├── .gitignore ├── README.md ├── .prettierrc ├── public ├── robots.txt ├── favicon.ico ├── index.html ├── logo.svg ├── logo-turbulence.svg ├── logo-blob.svg └── logo-x-static.svg ├── netlify.toml ├── src ├── types │ ├── global.ts │ └── jsx.d.ts ├── site.tsx ├── contents │ ├── current-state.tsx │ ├── intro.tsx │ ├── defer.ts │ ├── index.tsx │ ├── goals.tsx │ ├── tokens.tsx │ └── example.tsx ├── index.tsx ├── unbound.tsx ├── context.ts ├── h.ts ├── template.ts └── index.css ├── Dockerfile ├── scripts ├── jsdom.js └── prerender.js ├── snowpack.config.js ├── package.json ├── CODE-OF-CONDUCT.md ├── tsconfig.json ├── LICENCE └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .snowpack 2 | build 3 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [virtualstate.dev](https://virtualstate.dev) 2 | 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtualstate/virtualstate.dev/main/public/favicon.ico -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | base = "/" 3 | publish = "/build/" 4 | 5 | [[redirects]] 6 | from = "/*" 7 | to = "/" 8 | -------------------------------------------------------------------------------- /src/types/global.ts: -------------------------------------------------------------------------------- 1 | declare global { 2 | 3 | interface Window { 4 | proposalSiteRender?: Promise; 5 | } 6 | 7 | } 8 | 9 | export {}; 10 | -------------------------------------------------------------------------------- /src/site.tsx: -------------------------------------------------------------------------------- 1 | import { h } from "./h"; 2 | import { SiteContents } from "./contents"; 3 | import { createFragment } from '@virtualstate/dom'; 4 | 5 | export const SiteBody = 6 | -------------------------------------------------------------------------------- /src/contents/current-state.tsx: -------------------------------------------------------------------------------- 1 | import { h } from "../h"; 2 | 3 | export const CurrentState = ( 4 |
5 |

Current project state

6 |

7 | 8 |

9 |
10 | ) 11 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:15 2 | 3 | WORKDIR /usr/src 4 | 5 | RUN npm install --global http-server 6 | 7 | COPY ./package.json ./ 8 | COPY ./*lock* ./ 9 | 10 | RUN yarn 11 | 12 | COPY snowpack.config.js . 13 | COPY tsconfig.json . 14 | COPY .prettierrc . 15 | COPY src src 16 | COPY scripts scripts 17 | COPY public public 18 | 19 | RUN yarn build 20 | 21 | EXPOSE 8080 22 | 23 | CMD ["http-server", "./build", "-p", "8080", "--cors", "--proxy", "http://localhost:8080?"] 24 | -------------------------------------------------------------------------------- /scripts/jsdom.js: -------------------------------------------------------------------------------- 1 | import JSDOM from "jsdom"; 2 | 3 | const dom = new JSDOM.JSDOM(); 4 | 5 | // https://github.com/jsdom/jsdom/wiki/Don't-stuff-jsdom-globals-onto-the-Node-global 6 | // Don't do this 7 | global.window = dom.window; 8 | global.document = dom.window.document; 9 | global.Node = dom.window.Node; 10 | 11 | const KNOWN_USAGE = [ 12 | "HTMLTemplateElement" 13 | ]; 14 | 15 | for (const knownUsedKey of KNOWN_USAGE) { 16 | global[knownUsedKey] = dom.window[knownUsedKey]; 17 | } 18 | 19 | export default dom; 20 | -------------------------------------------------------------------------------- /src/contents/intro.tsx: -------------------------------------------------------------------------------- 1 | import { h } from '../h'; 2 | import { createFragment } from '@virtualstate/x'; 3 | import { Goals } from './goals'; 4 | import { Template } from '../template'; 5 | 6 | export const Intro = ( 7 | <> 8 | 15 | {Goals} 16 | 17 | ) 18 | -------------------------------------------------------------------------------- /src/contents/defer.ts: -------------------------------------------------------------------------------- 1 | export interface Deferred { 2 | resolve(value: T): void; 3 | reject(reason: unknown): void; 4 | promise: Promise; 5 | } 6 | 7 | export function deferred(): Deferred { 8 | let resolve: Deferred["resolve"] | undefined = undefined, 9 | reject: Deferred["reject"] | undefined = undefined; 10 | const promise = new Promise( 11 | (resolveFn, rejectFn) => { 12 | resolve = resolveFn; 13 | reject = rejectFn; 14 | } 15 | ); 16 | ok(resolve); 17 | ok(reject); 18 | return { 19 | resolve, 20 | reject, 21 | promise 22 | }; 23 | } 24 | 25 | function ok(value: unknown): asserts value { 26 | if (!value) { 27 | throw new Error("Value not provided"); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/contents/index.tsx: -------------------------------------------------------------------------------- 1 | import { h } from "../h"; 2 | import { Intro } from "./intro"; 3 | import { Example } from "./example"; 4 | import { Tokens } from './tokens'; 5 | import { Template } from '../template'; 6 | 7 | // TODO test 8 | 9 | export const SiteContents = ( 10 |
11 | {Intro} 12 | {Example} 13 | {Tokens} 14 | 22 |
23 | ); 24 | -------------------------------------------------------------------------------- /snowpack.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import("snowpack").SnowpackUserConfig } */ 2 | export default { 3 | mount: { 4 | /* ... */ 5 | "src": "/", 6 | "public": "/" 7 | }, 8 | exclude: [ 9 | "**/node_modules/**/*", 10 | ], 11 | plugins: [ 12 | /* ... */ 13 | ], 14 | routes: [ 15 | /* Enable an SPA Fallback in development: */ 16 | // {"match": "routes", "src": ".*", "dest": "/index.html"}, 17 | ], 18 | optimize: { 19 | /* Example: Bundle your final build: */ 20 | bundle: true, 21 | minify: true, 22 | target: "es2018", 23 | entrypoints: [ 24 | "index.html" 25 | ] 26 | }, 27 | packageOptions: { 28 | /* ... */ 29 | }, 30 | devOptions: { 31 | /* ... */ 32 | }, 33 | buildOptions: { 34 | /* ... */ 35 | jsxFactory: "h", 36 | jsxFragment: "createFragment" 37 | }, 38 | env: { 39 | 40 | } 41 | }; 42 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import { render, DOMVContext, createTimeline, Timeline } from '@virtualstate/dom'; 2 | import { SiteBody } from './site'; 3 | import { h } from "./h"; 4 | 5 | async function run() { 6 | 7 | const root = document.getElementById("root"); 8 | 9 | if (!root) { 10 | throw new Error("Expected root"); 11 | } 12 | 13 | const context = new DOMVContext({ 14 | root 15 | }); 16 | 17 | // const timelinePromise = createTimeline( 18 | // context, 19 | // reportTimeline 20 | // ); 21 | 22 | await render( 23 | , 24 | context 25 | ); 26 | 27 | console.log("Completed rendering"); 28 | 29 | await context.close(); 30 | 31 | // await reportTimeline(await timelinePromise); 32 | } 33 | 34 | async function reportTimeline(timeline: Timeline) { 35 | // console.log(timeline[timeline.length - 1]); 36 | } 37 | 38 | window.proposalSiteRender = run(); 39 | window.proposalSiteRender.catch(error => { 40 | throw error; 41 | }); 42 | 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "virtualstate.dev", 3 | "private": true, 4 | "license": "CC-0", 5 | "type": "module", 6 | "scripts": { 7 | "start": "snowpack dev", 8 | "build": "snowpack build && node scripts/prerender.js", 9 | "test": "echo \"This template does not include a test runner by default.\" && exit 1" 10 | }, 11 | "devDependencies": { 12 | "@types/jest": "^26.0.21", 13 | "@types/node": "^14.14.35", 14 | "jsdom": "^16.5.3", 15 | "snowpack": "^3.3.5", 16 | "typescript": "^4.2.3" 17 | }, 18 | "dependencies": { 19 | "@virtualstate/dom": "^2.14.5", 20 | "@virtualstate/examples": "^2.14.7", 21 | "@virtualstate/fringe": "^2.14.5", 22 | "@virtualstate/hooks": "^2.14.5", 23 | "@virtualstate/hooks-extended": "^2.14.5", 24 | "@virtualstate/union": "^2.14.5", 25 | "@virtualstate/x": "^2.14.5", 26 | "fp-ts": "^2.10.4", 27 | "io-ts": "^2.2.16", 28 | "iterable": "^5.7.0", 29 | "microtask-collector": "^3.1.0" 30 | }, 31 | "engines": { 32 | "node": ">=15.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | vsx 10 | 11 | 12 |
13 | 14 | 15 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/contents/goals.tsx: -------------------------------------------------------------------------------- 1 | import { h } from '../h'; 2 | import { Template } from '../template'; 3 | 4 | export const Goals = ( 5 | 31 | ) 32 | -------------------------------------------------------------------------------- /src/unbound.tsx: -------------------------------------------------------------------------------- 1 | import { SourceReference, VNode } from '@virtualstate/x'; 2 | import { assertElement, NativeOptionsVNode, render } from '@virtualstate/dom'; 3 | import { h } from '@virtualstate/x'; 4 | 5 | export interface UnboundOptions { 6 | reference?: SourceReference; 7 | source?: string; 8 | onComplete?(): void; 9 | onError?(error: unknown): void; 10 | } 11 | 12 | export function Unbound(options: UnboundOptions, child: VNode): NativeOptionsVNode { 13 | const bound = Symbol("Bound"); 14 | 15 | let rendering: Promise 16 | 17 | return { 18 | reference: options.reference ?? Symbol("Unbound"), 19 | source: options.source ?? "div", 20 | options: { 21 | type: "Element", 22 | onBeforeRender(root) { 23 | assertElement(root); 24 | rendering = rendering || ( 25 | createRender(root).then(noop) 26 | ); 27 | } 28 | } 29 | } 30 | 31 | async function createRender(root: Element) { 32 | try { 33 | root.append(document.createElement("span")); 34 | await render(, root); 35 | options.onComplete?.(); 36 | } catch (error) { 37 | options.onError?.(error); 38 | } 39 | } 40 | 41 | function Bound() { 42 | return child; 43 | } 44 | } 45 | 46 | function noop() { 47 | return undefined; 48 | } 49 | -------------------------------------------------------------------------------- /scripts/prerender.js: -------------------------------------------------------------------------------- 1 | import "./jsdom.js"; 2 | import { promises as fs } from "node:fs"; 3 | import { dirname, join } from 'node:path'; 4 | import JSDOM from "jsdom"; 5 | 6 | // Create a new root element 7 | const root = document.createElement("div"); 8 | root.id = "root"; 9 | 10 | // No harm in appending our root to the document body 11 | document.body.append(root); 12 | 13 | // This will initialise our sites render 14 | await import("../build/index.js"); 15 | 16 | // The bundler does not have top level await support, so we must utilise the global 17 | // the above import sets 18 | await window.proposalSiteRender; 19 | 20 | const directory = dirname(new URL(import.meta.url).pathname); 21 | 22 | const indexPath = join(directory, "../build/index.html"); 23 | const index = await fs.readFile(indexPath, "utf8"); 24 | 25 | const target = new JSDOM.JSDOM(index); 26 | 27 | // Copy over generated templates 28 | const template = document.createElement("template"); 29 | const foundTemplates = document.body.querySelectorAll("template[id]"); 30 | 31 | // Remove any existing versions of the template found 32 | for (const foundTemplate of foundTemplates) { 33 | const existing = target.window.document.getElementById(foundTemplate.id); 34 | if (existing) { 35 | existing.parentElement.removeChild(existing); 36 | } 37 | template.content.append(foundTemplate); 38 | } 39 | 40 | // Create a template in our target DOM and then copy over using an HTML string 41 | // then append these to the targets body using the target templates DocumentFragment 42 | const targetTemplate = target.window.document.createElement("template"); 43 | targetTemplate.innerHTML = template.innerHTML; 44 | target.window.document.body.append(targetTemplate.content); 45 | 46 | // Write to disk 47 | await fs.writeFile( 48 | indexPath, 49 | target.serialize() 50 | ) 51 | -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- 1 | import { asyncHooks, source, asyncExtendedIterable, ExtendedAsyncIterable } from "iterable"; 2 | import { Is } from "io-ts"; 3 | 4 | export function createContext(defaultValue: T, name?: string, is?: Is, onRetrieveFailure?: (error?: unknown) => void, onStoreFailure?: (value: T, error?: unknown) => void): [() => ExtendedAsyncIterable, (value: T) => void] { 5 | let currentValue: T = defaultValue; 6 | 7 | // If `name` isn't provided, we aren't using storage 8 | // If `is` isn't provided, we are write only 9 | if (name && is) { 10 | try { 11 | const storedValue = localStorage.getItem(name); 12 | if (storedValue) { 13 | const parsedValue = JSON.parse(storedValue); 14 | if (is(parsedValue)) { 15 | currentValue = parsedValue; 16 | } 17 | } 18 | } catch (e) { 19 | // Silently continue, could not retrieve 20 | if (onRetrieveFailure) { 21 | onRetrieveFailure(e); 22 | } 23 | } 24 | } 25 | 26 | const preference = source(); 27 | const preferenceTriggered = new WeakMap(); 28 | const preferenceTrigger = asyncHooks({ 29 | next: async (iterator: AsyncIterator): Promise> => { 30 | if (preferenceTriggered.has(iterator)) { 31 | return iterator.next(); 32 | } 33 | preferenceTriggered.set(iterator, true); 34 | return { 35 | done: false, 36 | value: currentValue 37 | }; 38 | } 39 | }); 40 | 41 | return [ 42 | () => { 43 | return asyncExtendedIterable(preferenceTrigger(preference)); 44 | }, 45 | (value) => { 46 | currentValue = value; 47 | preference.push(value); 48 | if (name) { 49 | try { 50 | localStorage.setItem(name, JSON.stringify(value)); 51 | } catch (e) { 52 | // Silently continue, could not store 53 | if (onStoreFailure) { 54 | onStoreFailure(value, e); 55 | } 56 | } 57 | } 58 | } 59 | ]; 60 | } 61 | -------------------------------------------------------------------------------- /src/h.ts: -------------------------------------------------------------------------------- 1 | import { createNode, Source, VNode, VNodeRepresentationSource, Fragment } from "@virtualstate/x"; 2 | import { 3 | isGetDocumentNodeOptions, 4 | isNativeOptions, 5 | NativeOptions, 6 | isOnBeforeRenderOptions, 7 | isAttributesOptions 8 | } from "@virtualstate/dom"; 9 | 10 | export function h(source: Source, options?: O, ...children: VNodeRepresentationSource[]): VNode 11 | export function h(source: Source, options?: object, ...children: VNodeRepresentationSource[]): VNode { 12 | if (source === "fragment") { 13 | return h(Fragment, options, ...children); 14 | } 15 | 16 | if (typeof source === "string" && options && !isNativeOptions(options)) { 17 | // Please if you have a solution to do this without any, please let me know 18 | const resultingOptions: Partial = { 19 | type: "Element", 20 | attributes: {}, 21 | }; 22 | 23 | const toJSON = () => ({ 24 | attributes: resultingOptions.attributes 25 | }); 26 | 27 | Object.defineProperty(resultingOptions, "toJSON", { 28 | value: toJSON, 29 | enumerable: false 30 | }); 31 | 32 | let remainingOptions: object = options; 33 | 34 | if (isGetDocumentNodeOptions(remainingOptions)) { 35 | const { getDocumentNode, ...nextRemainingOptions } = remainingOptions; 36 | remainingOptions = nextRemainingOptions; 37 | resultingOptions.getDocumentNode = getDocumentNode; 38 | } 39 | 40 | if (isOnBeforeRenderOptions(remainingOptions)) { 41 | const { onBeforeRender, ...nextRemainingOptions } = remainingOptions; 42 | remainingOptions = nextRemainingOptions; 43 | resultingOptions.onBeforeRender = onBeforeRender; 44 | } 45 | 46 | const finalOptions = { 47 | attributes: remainingOptions 48 | }; 49 | 50 | if (isAttributesOptions(finalOptions)) { 51 | resultingOptions.attributes = finalOptions.attributes; 52 | } 53 | 54 | return h(source, resultingOptions, ...children); 55 | } 56 | 57 | return createNode(source, options || {}, ...children); 58 | } 59 | -------------------------------------------------------------------------------- /src/template.ts: -------------------------------------------------------------------------------- 1 | import { VNode } from '@virtualstate/x'; 2 | import { isElement, NativeOptionsVNode, render } from '@virtualstate/dom'; 3 | 4 | export interface TemplateOptions { 5 | id: string; 6 | } 7 | 8 | export async function Template({ id }: TemplateOptions, child: VNode): Promise { 9 | let createTemplatePromise: Promise | undefined; 10 | 11 | return { 12 | reference: Symbol("Templated Document Node"), 13 | children: { 14 | async *[Symbol.asyncIterator]() { 15 | yield * instance() 16 | } 17 | } 18 | } 19 | 20 | async function *instance(): AsyncIterable { 21 | const template = await getTemplate(document); 22 | yield Array.from(template.content.cloneNode(true).childNodes).map((node, index): NativeOptionsVNode => { 23 | return { 24 | reference: Symbol(["template", id, index].join(", ")), 25 | source: "template", 26 | options: { 27 | type: "Node", 28 | instance: node 29 | } 30 | } 31 | }); 32 | } 33 | 34 | async function getTemplate(document: Document): Promise { 35 | const existing = document.querySelector(`template#${id}`); 36 | if (isHTMLTemplateElement(existing)) { 37 | return existing; 38 | } 39 | return await (createTemplatePromise = createTemplatePromise || createTemplate(document)); 40 | 41 | function isHTMLTemplateElement(value: unknown): value is HTMLTemplateElement { 42 | return isElement(value) && value.tagName.toUpperCase() === "TEMPLATE"; 43 | } 44 | } 45 | 46 | async function createTemplate(document: Document): Promise { 47 | const template = document.createElement("template"); 48 | const root = document.createElement("div"); 49 | root.id = "template-root"; 50 | await render(child, root); 51 | template.content.append(...Array.from(root.childNodes)); 52 | template.id = id; 53 | document.body.append(template); 54 | createTemplatePromise = undefined; 55 | return template; 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at [conduct@fabiancook.dev](mailto:conduct@fabiancook.dev). All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --cube-size: 150px; 3 | --cube-size-face-z: -75px; 4 | } 5 | 6 | @page { 7 | size: auto; 8 | margin: 25mm 25mm 25mm 25mm; 9 | } 10 | 11 | body { 12 | font-family: Helvetica, Arial, sans-serif; 13 | color: black; 14 | margin: 0; 15 | background: rgb(236, 240, 255); 16 | min-height: 100vh; 17 | min-width: 100vw; 18 | box-sizing: border-box; 19 | } 20 | 21 | p { 22 | line-height: 1.3em; 23 | } 24 | 25 | .quote, 26 | .example-output, 27 | pre { 28 | border-radius: 4px; 29 | padding: 1em; 30 | break-inside: avoid; 31 | } 32 | 33 | .quote { 34 | background-color: rgba(0, 0, 0, .05); 35 | } 36 | 37 | .code, 38 | pre { 39 | padding: 1em; 40 | border-radius: 4px; 41 | overflow-x: auto; 42 | overflow-y: hidden; 43 | border: 1px solid rgba(0, 0, 0, 0.2); 44 | background-color: rgba(0, 0, 0, .05); 45 | } 46 | 47 | span.code { 48 | border: none; 49 | padding: 0 0.25em; 50 | box-sizing: content-box; 51 | background-color: rgba(0, 0, 0, .1); 52 | } 53 | 54 | .example-output { 55 | border-radius: 4px; 56 | padding: 10px; 57 | border: 1px dashed #222222; 58 | } 59 | 60 | main { 61 | margin: 0 auto; 62 | max-width: 40rem; 63 | padding: 3em; 64 | background: white; 65 | } 66 | 67 | button { 68 | padding: 15px 10px; 69 | font-size: inherit; 70 | background: #075997; 71 | color: white; 72 | font-weight: bold; 73 | cursor: pointer; 74 | outline-offset: 4px; 75 | border: 1px solid; 76 | border-radius: 4px; 77 | min-width: 10em; 78 | } 79 | 80 | a, button { 81 | min-height: 48px; 82 | min-width: 48px; 83 | cursor: pointer; 84 | } 85 | 86 | .esm-warning { 87 | margin: 0 auto; 88 | max-width: 40rem; 89 | } 90 | 91 | .example-output .ball-container { 92 | position: relative; 93 | } 94 | 95 | .example-output .ball-container .ball { 96 | position: absolute; 97 | right: 1em; 98 | bottom: 0; 99 | display: block; 100 | width: 2em; 101 | height: 2em; 102 | background: radial-gradient(circle at .2em .2em, #04a5d7, #000); 103 | border-radius: 100%; 104 | background-color: green; 105 | animation: bounce 0.75s cubic-bezier(1, .0025, 1, 1); 106 | animation-direction: alternate; 107 | animation-iteration-count: infinite; 108 | } 109 | 110 | @keyframes bounce { 111 | from { transform: translate3d(0, 5%, 0); } 112 | to { transform: translate3d(0, -70%, 0); } 113 | } 114 | 115 | h1 { 116 | font-weight: 100; 117 | font-size: 4em; 118 | margin-top: 0; 119 | margin-bottom: .25em; 120 | } 121 | 122 | .branded-x { 123 | color: transparent; 124 | position: relative; 125 | display: inline-block; 126 | width: 1.5em; 127 | height: 1em; 128 | padding: 0; 129 | margin: 0; 130 | margin-left: -0.25em; 131 | } 132 | .branded-x:before, 133 | .branded-x:after { 134 | position: absolute; 135 | left: 0; 136 | top: 0; 137 | content: ' '; 138 | background-image: url("/logo.svg"); 139 | background-size: 1em 1em; 140 | background-position: center; 141 | background-repeat: no-repeat; 142 | width: 1em; 143 | height: 1em; 144 | display: inline-block; 145 | } 146 | 147 | .branded-x:after { 148 | animation-name: logo-b; 149 | animation-duration: 10000ms; 150 | animation-iteration-count: infinite; 151 | animation-direction: alternate; 152 | background-image: url("/logo-turbulence.svg"); 153 | transform: rotate(180deg); 154 | transform-origin: center; 155 | } 156 | 157 | @keyframes logo-b { 158 | 0% { 159 | opacity: 0; } 160 | 40% { 161 | opacity: 1; } 162 | 60% { 163 | opacity: 1; } 164 | 100% { 165 | opacity: 0; } 166 | } 167 | 168 | -------------------------------------------------------------------------------- /src/contents/tokens.tsx: -------------------------------------------------------------------------------- 1 | import { h } from "../h"; 2 | import { createToken } from '@virtualstate/x'; 3 | import { Template } from '../template'; 4 | 5 | const Select = createToken( 6 | Symbol("Select"), 7 | { 8 | defaultValue: "", 9 | class: "select" 10 | }, 11 | 12 | ); 13 | 14 | interface PersonUpdateOptions { 15 | firstName: string; 16 | lastName: string; 17 | } 18 | const PersonUpdateSymbol = Symbol() 19 | const PersonUpdate = createToken(PersonUpdateSymbol); 20 | 21 | interface PersonUpdateFormOptions { 22 | onPersonUpdate(update: PersonUpdateOptions): void 23 | } 24 | const PersonUpdateFormSymbol = Symbol() 25 | const PersonUpdateForm = createToken(PersonUpdateFormSymbol); 26 | 27 | export const Tokens = ( 28 | 108 | ) 109 | 110 | function noop() { 111 | return undefined; 112 | } 113 | -------------------------------------------------------------------------------- /src/types/jsx.d.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | declare namespace JSX { 4 | 5 | type DocumentNode = Element | Text | Node; 6 | 7 | type Attributes = Record; 8 | 9 | type BooleanAttribute = boolean | ""; 10 | 11 | interface HTMLAriaAttributes { 12 | role?: string; 13 | "aria-controls"?: string; 14 | "aria-selected"?: string | BooleanAttribute; 15 | } 16 | 17 | interface HTMLElementAttributes extends HTMLAriaAttributes, Attributes { 18 | onBeforeRender?(node: DocumentNode): void | Promise; 19 | getDocumentNode?(root: Element): DocumentNode | Promise; 20 | class?: string; 21 | accesskey?: string; 22 | contenteditable?: BooleanAttribute; 23 | contextmenu?: string; 24 | dir?: "rtl" | "ltr" | "auto"; 25 | draggable?: string; 26 | dropzone?: string; 27 | hidden?: string | boolean; 28 | id?: string; 29 | itemprop?: string; 30 | lang?: string; 31 | slot?: string; 32 | spellcheck?: string; 33 | style?: string; 34 | tabindex?: string | number; 35 | title?: string; 36 | translate?: string; 37 | } 38 | 39 | interface HTMLImageAttributes extends HTMLElementAttributes { 40 | 41 | } 42 | 43 | interface HTMLAnchorAttributes extends HTMLElementAttributes { 44 | 45 | } 46 | 47 | interface HTMLButtonAttributes extends HTMLElementAttributes { 48 | type: "submit" | "button"; 49 | } 50 | 51 | interface HTMLLinkAttributes extends HTMLElementAttributes { 52 | 53 | } 54 | 55 | interface HTMLMetaAttributes extends HTMLElementAttributes { 56 | 57 | } 58 | 59 | interface HTMLSlotAttributes extends HTMLElementAttributes { 60 | 61 | } 62 | 63 | interface HTMLScriptAttributes extends HTMLElementAttributes { 64 | src?: string; 65 | type?: string; 66 | } 67 | 68 | interface HTMLOptionAttributes extends HTMLElementAttributes { 69 | value?: string; 70 | disabled?: BooleanAttribute; 71 | } 72 | 73 | interface DOMElements { 74 | html: HTMLElementAttributes; 75 | body: HTMLElementAttributes; 76 | head: HTMLElementAttributes; 77 | title: HTMLElementAttributes; 78 | header: HTMLElementAttributes; 79 | footer: HTMLElementAttributes; 80 | article: HTMLElementAttributes; 81 | section: HTMLElementAttributes; 82 | div: HTMLElementAttributes; 83 | span: HTMLElementAttributes; 84 | img: HTMLImageAttributes; 85 | aside: HTMLElementAttributes; 86 | audio: HTMLElementAttributes; 87 | canvas: HTMLElementAttributes; 88 | datalist: HTMLElementAttributes; 89 | details: HTMLElementAttributes; 90 | embed: HTMLElementAttributes; 91 | nav: HTMLElementAttributes; 92 | output: HTMLElementAttributes; 93 | progress: HTMLElementAttributes; 94 | video: HTMLElementAttributes; 95 | ul: HTMLElementAttributes; 96 | li: HTMLElementAttributes; 97 | ol: HTMLElementAttributes; 98 | a: HTMLAnchorAttributes; 99 | p: HTMLElementAttributes; 100 | button: HTMLButtonAttributes; 101 | table: HTMLElementAttributes; 102 | thead: HTMLElementAttributes; 103 | tbody: HTMLElementAttributes; 104 | tr: HTMLElementAttributes; 105 | td: HTMLElementAttributes; 106 | th: HTMLElementAttributes; 107 | link: HTMLLinkAttributes; 108 | meta: HTMLMetaAttributes; 109 | marquee: HTMLElementAttributes; 110 | slot: HTMLSlotAttributes; 111 | h1: HTMLElementAttributes; 112 | h2: HTMLElementAttributes; 113 | h3: HTMLElementAttributes; 114 | h4: HTMLElementAttributes; 115 | h5: HTMLElementAttributes; 116 | h6: HTMLElementAttributes; 117 | script: HTMLScriptAttributes; 118 | pre: HTMLElementAttributes; 119 | code: HTMLElementAttributes; 120 | br: HTMLElementAttributes; 121 | hr: HTMLElementAttributes; 122 | main: HTMLElementAttributes; 123 | label: HTMLElementAttributes; 124 | em: HTMLElementAttributes; 125 | option: HTMLOptionAttributes; 126 | } 127 | 128 | interface IntrinsicElements extends DOMElements, Record { 129 | fragment: Attributes; 130 | } 131 | 132 | } 133 | -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | -------------------------------------------------------------------------------- /public/logo-turbulence.svg: -------------------------------------------------------------------------------- 1 | 2 | 133 | 134 | 136 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | -------------------------------------------------------------------------------- /public/logo-blob.svg: -------------------------------------------------------------------------------- 1 | 2 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /src/contents/example.tsx: -------------------------------------------------------------------------------- 1 | import { h } from '../h'; 2 | import { Template } from '../template'; 3 | import { Unbound } from '../unbound'; 4 | import { VNode, Collector, createFragment } from '@virtualstate/x'; 5 | 6 | export async function InitialExample() { 7 | return ( 8 | <> 9 |

This is an example of various capabilities of this pattern

10 |
 11 |         
 12 |           
 13 |         
 14 |       
15 | 16 | ) 17 | } 18 | 19 | async function AsyncExample() { 20 | return await new Promise( 21 | resolve => setTimeout(resolve, 1500, `Async result: ${Math.random()}`) 22 | ); 23 | } 24 | 25 | async function *Loading(options: unknown, child: VNode) { 26 | yield <>Loading!; 27 | yield child; 28 | } 29 | 30 | 31 | export const Example = ( 32 |
33 | 67 |
68 | 69 | 70 | 71 |
72 | 109 |
110 | 111 | 112 | 113 |
114 |
115 | ) 116 | 117 | async function *ReactiveExample() { 118 | const eventCollector = new Collector(); 119 | // Don't actually collect any event 120 | const onClick = eventCollector.add.bind(eventCollector, Symbol("Click")); 121 | const button = document.createElement("button"); 122 | button.addEventListener("click", onClick); 123 | 124 | let visible = false; 125 | 126 | yield ; 127 | 128 | for await (const events of eventCollector) { 129 | visible = events.reduce((visible: boolean) => !visible, visible); 130 | console.log({ events, visible }); 131 | yield ; 132 | 133 | // Re focus the button after the onClick, allows for toggling on and off with keyboard 134 | button.focus(); 135 | } 136 | 137 | function View() { 138 | return ( 139 |
140 | {visible ? : undefined} 141 | 142 |
143 | ) 144 | } 145 | } 146 | -------------------------------------------------------------------------------- /public/logo-x-static.svg: -------------------------------------------------------------------------------- 1 | 2 | 146 | 147 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ 5 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ 6 | "lib": [ 7 | "dom", 8 | "es2020", 9 | "esnext" 10 | ], /* Specify library files to be included in the compilation. */ 11 | // "allowJs": true, /* Allow javascript files to be compiled. */ 12 | // "checkJs": true, /* Report errors in .js files. */ 13 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 14 | // "declaration": true, /* Generates corresponding '.d.ts' file. */ 15 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ 16 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 17 | // "outFile": "./", /* Concatenate and emit output to single file. */ 18 | // "outDir": "./", /* Redirect output structure to the directory. */ 19 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 20 | // "composite": true, /* Enable project compilation */ 21 | // "removeComments": true, /* Do not emit comments to output. */ 22 | // "noEmit": true, /* Do not emit outputs. */ 23 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 24 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 25 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 26 | 27 | /* Strict Type-Checking Options */ 28 | "strict": true, /* Enable all strict type-checking options. */ 29 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 30 | // "strictNullChecks": true, /* Enable strict null checks. */ 31 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 32 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ 33 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 34 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 35 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 36 | 37 | /* Additional Checks */ 38 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 39 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 40 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 41 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 42 | 43 | /* Module Resolution Options */ 44 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 45 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 46 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 47 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 48 | "typeRoots": [ 49 | "src/types" 50 | ], /* List of folders to include type definitions from. */ 51 | // "types": [], /* Type declaration files to be included in compilation. */ 52 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 53 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ 54 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 55 | 56 | /* Source Map Options */ 57 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 58 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 59 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 60 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 61 | 62 | /* Experimental Options */ 63 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 64 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */, 65 | "jsx": "react", 66 | "jsxFactory": "h", 67 | "jsxFragmentFactory": "createFragment" 68 | }, 69 | "include": [ 70 | "src", 71 | "src/index.tsx", 72 | "src/types" 73 | ], 74 | "exclude": [ 75 | "dist", 76 | "build" 77 | ] 78 | } 79 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@jest/types@^26.6.2": 6 | version "26.6.2" 7 | resolved "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" 8 | integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== 9 | dependencies: 10 | "@types/istanbul-lib-coverage" "^2.0.0" 11 | "@types/istanbul-reports" "^3.0.0" 12 | "@types/node" "*" 13 | "@types/yargs" "^15.0.0" 14 | chalk "^4.0.0" 15 | 16 | "@npmcli/ci-detect@^1.0.0": 17 | version "1.3.0" 18 | resolved "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz#6c1d2c625fb6ef1b9dea85ad0a5afcbef85ef22a" 19 | integrity sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q== 20 | 21 | "@npmcli/git@^2.0.1": 22 | version "2.0.8" 23 | resolved "https://registry.npmjs.org/@npmcli/git/-/git-2.0.8.tgz#c38b54cdeec556ab641cf6161cc7825711a88d65" 24 | integrity sha512-LPnzyBZ+1p7+JzHVwwKycMF8M3lr1ze3wxGRnxn/QxJtk++Y3prSJQrdBDGCxJyRpFsup6J3lrRBVYBhJVrM8Q== 25 | dependencies: 26 | "@npmcli/promise-spawn" "^1.3.2" 27 | lru-cache "^6.0.0" 28 | mkdirp "^1.0.4" 29 | npm-pick-manifest "^6.1.1" 30 | promise-inflight "^1.0.1" 31 | promise-retry "^2.0.1" 32 | semver "^7.3.5" 33 | which "^2.0.2" 34 | 35 | "@npmcli/installed-package-contents@^1.0.6": 36 | version "1.0.7" 37 | resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa" 38 | integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw== 39 | dependencies: 40 | npm-bundled "^1.1.1" 41 | npm-normalize-package-bin "^1.0.1" 42 | 43 | "@npmcli/move-file@^1.0.1": 44 | version "1.1.2" 45 | resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" 46 | integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== 47 | dependencies: 48 | mkdirp "^1.0.4" 49 | rimraf "^3.0.2" 50 | 51 | "@npmcli/node-gyp@^1.0.2": 52 | version "1.0.2" 53 | resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.2.tgz#3cdc1f30e9736dbc417373ed803b42b1a0a29ede" 54 | integrity sha512-yrJUe6reVMpktcvagumoqD9r08fH1iRo01gn1u0zoCApa9lnZGEigVKUd2hzsCId4gdtkZZIVscLhNxMECKgRg== 55 | 56 | "@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2": 57 | version "1.3.2" 58 | resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz#42d4e56a8e9274fba180dabc0aea6e38f29274f5" 59 | integrity sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg== 60 | dependencies: 61 | infer-owner "^1.0.4" 62 | 63 | "@npmcli/run-script@^1.8.2": 64 | version "1.8.4" 65 | resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.4.tgz#03ced92503a6fe948cbc0975ce39210bc5e824d6" 66 | integrity sha512-Yd9HXTtF1JGDXZw0+SOn+mWLYS0e7bHBHVC/2C8yqs4wUrs/k8rwBSinD7rfk+3WG/MFGRZKxjyoD34Pch2E/A== 67 | dependencies: 68 | "@npmcli/node-gyp" "^1.0.2" 69 | "@npmcli/promise-spawn" "^1.3.2" 70 | infer-owner "^1.0.4" 71 | node-gyp "^7.1.0" 72 | read-package-json-fast "^2.0.1" 73 | 74 | "@opennetwork/linked-list@^4.0.0": 75 | version "4.0.0" 76 | resolved "https://registry.npmjs.org/@opennetwork/linked-list/-/linked-list-4.0.0.tgz#69e25d0b00387f00da91faea2a5b77897d920712" 77 | integrity sha512-aMEXPA0y3FZd5IlPPNVLHf5jxwNE9bo6d+5OgCsqZhRilftUuaytEnAS+7ggjiPekAtVDFl2okYROqtL3f02+g== 78 | 79 | "@tootallnate/once@1": 80 | version "1.1.2" 81 | resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 82 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 83 | 84 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": 85 | version "2.0.3" 86 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 87 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 88 | 89 | "@types/istanbul-lib-report@*": 90 | version "3.0.0" 91 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 92 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 93 | dependencies: 94 | "@types/istanbul-lib-coverage" "*" 95 | 96 | "@types/istanbul-reports@^3.0.0": 97 | version "3.0.0" 98 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821" 99 | integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA== 100 | dependencies: 101 | "@types/istanbul-lib-report" "*" 102 | 103 | "@types/jest@^26.0.21": 104 | version "26.0.22" 105 | resolved "https://registry.npmjs.org/@types/jest/-/jest-26.0.22.tgz#8308a1debdf1b807aa47be2838acdcd91e88fbe6" 106 | integrity sha512-eeWwWjlqxvBxc4oQdkueW5OF/gtfSceKk4OnOAGlUSwS/liBRtZppbJuz1YkgbrbfGOoeBHun9fOvXnjNwrSOw== 107 | dependencies: 108 | jest-diff "^26.0.0" 109 | pretty-format "^26.0.0" 110 | 111 | "@types/node@*", "@types/node@^14.14.35": 112 | version "14.14.41" 113 | resolved "https://registry.npmjs.org/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615" 114 | integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g== 115 | 116 | "@types/yargs-parser@*": 117 | version "20.2.0" 118 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9" 119 | integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA== 120 | 121 | "@types/yargs@^15.0.0": 122 | version "15.0.13" 123 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc" 124 | integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ== 125 | dependencies: 126 | "@types/yargs-parser" "*" 127 | 128 | "@virtualstate/dom@^2.14.5": 129 | version "2.14.5" 130 | resolved "https://registry.npmjs.org/@virtualstate/dom/-/dom-2.14.5.tgz#d444a59df87af6421f1ae4a630b0060a29aa1922" 131 | integrity sha512-qlI6llOv5cNZN+QXy7ShcjbGV0767Rw+CRqMRasodsgaBFkL0k8m5VKur6l7p8n7pNROW0FgAcPDe5zu0Qp88w== 132 | dependencies: 133 | "@virtualstate/fringe" "^2.14.5" 134 | "@virtualstate/hooks" "^2.14.5" 135 | "@virtualstate/union" "^2.14.5" 136 | "@virtualstate/x" "^2.14.5" 137 | iterable "^5.6.0" 138 | microtask-collector "^3.1.0" 139 | 140 | "@virtualstate/examples@^2.14.7": 141 | version "2.14.7" 142 | resolved "https://registry.npmjs.org/@virtualstate/examples/-/examples-2.14.7.tgz#8c781c93885b9985a4ca3484255b270294d29788" 143 | integrity sha512-daxL9cgC+1A6GbzafqR84Gpj27cQZijMIVOP9lVMAALfL+mw6zugZxGtpZyWfabagxTTbIw1e1T3m4ghMogdaw== 144 | dependencies: 145 | "@virtualstate/fringe" "^2.14.5" 146 | "@virtualstate/hooks" "^2.14.5" 147 | "@virtualstate/union" "^2.14.5" 148 | "@virtualstate/x" "^2.14.5" 149 | iterable "^5.6.0" 150 | microtask-collector "^3.1.0" 151 | 152 | "@virtualstate/fringe@^2.14.5": 153 | version "2.14.5" 154 | resolved "https://registry.npmjs.org/@virtualstate/fringe/-/fringe-2.14.5.tgz#77786220370a271831e55a0e32b72b0dc37d8147" 155 | integrity sha512-pDBYFXCGGoRPdvZkph+P6GyRuuSs0ZlM3mJ7c9dLrV6K/hKqH8JtLQlB5b+8fN81yyAQZ4mpQ6xRLQsgZd8uzQ== 156 | 157 | "@virtualstate/hooks-extended@^2.14.5": 158 | version "2.14.5" 159 | resolved "https://registry.npmjs.org/@virtualstate/hooks-extended/-/hooks-extended-2.14.5.tgz#2e1a5fdc5d83bbfe7c4e3cdac424803bb70c8ba2" 160 | integrity sha512-by0oEBoCl+G1ZdMHSbn6yrmiZn0g20+eCSfvIaG3VBkJLixuioEjW14prt7L9p3ReORCq+PBKZtVQ5kLXNMXfw== 161 | 162 | "@virtualstate/hooks@^2.14.5": 163 | version "2.14.5" 164 | resolved "https://registry.npmjs.org/@virtualstate/hooks/-/hooks-2.14.5.tgz#5e5b5303e668aa676cb1a4c13b154d47e05c7594" 165 | integrity sha512-QknE9tjoC/tZJdwIrCDiMpL9vpadT41hMpUiTpG7hOt5OZyI2jmCy/qnhCs+zB0qeRwckF5ovlhQacRAk/H4HA== 166 | 167 | "@virtualstate/union@^2.14.5": 168 | version "2.14.5" 169 | resolved "https://registry.npmjs.org/@virtualstate/union/-/union-2.14.5.tgz#b22fd416648b82889fb28d23726dccb7629e0c62" 170 | integrity sha512-Skd6vLYrzUiTLQI+VIxS4kRUCS8Pcb17rqa4UQrZk5PwSDSGj0tU42tIha/zyCAnMN7vg5zdm3bJI2iGD1cH4Q== 171 | 172 | "@virtualstate/x@^2.14.5": 173 | version "2.14.5" 174 | resolved "https://registry.npmjs.org/@virtualstate/x/-/x-2.14.5.tgz#248a28744f4f6094e671f2d7ed228825c60b67c8" 175 | integrity sha512-j/BJ+ZwAZpYpAPVvjLigEDKiWcpp/UJ+hHIClKt4IDar1NQhntZzwEpsTfSJFm+yFxt35UN0YY6+s4x7I+ycrg== 176 | dependencies: 177 | "@virtualstate/fringe" "^2.14.5" 178 | "@virtualstate/hooks" "^2.14.5" 179 | "@virtualstate/union" "^2.14.5" 180 | iterable "^5.6.0" 181 | microtask-collector "^3.1.0" 182 | 183 | abab@^2.0.3, abab@^2.0.5: 184 | version "2.0.5" 185 | resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 186 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 187 | 188 | abbrev@1: 189 | version "1.1.1" 190 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 191 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 192 | 193 | acorn-globals@^6.0.0: 194 | version "6.0.0" 195 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 196 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 197 | dependencies: 198 | acorn "^7.1.1" 199 | acorn-walk "^7.1.1" 200 | 201 | acorn-walk@^7.1.1: 202 | version "7.2.0" 203 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 204 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 205 | 206 | acorn@^7.1.1: 207 | version "7.4.1" 208 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 209 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 210 | 211 | acorn@^8.1.0: 212 | version "8.2.0" 213 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.2.0.tgz#8acbbbef258a55e376d3c6ff66edbccbd2c915a4" 214 | integrity sha512-mKX0DCmQfrI8bczZxj9U3LEdfzYO3HsITd2w6HFGjYAy6mDkhwXQwhtuVyLNdfTztXo6tOgrD4TVpk27kiCStw== 215 | 216 | agent-base@6: 217 | version "6.0.2" 218 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 219 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 220 | dependencies: 221 | debug "4" 222 | 223 | agentkeepalive@^4.1.3: 224 | version "4.1.4" 225 | resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz#d928028a4862cb11718e55227872e842a44c945b" 226 | integrity sha512-+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ== 227 | dependencies: 228 | debug "^4.1.0" 229 | depd "^1.1.2" 230 | humanize-ms "^1.2.1" 231 | 232 | aggregate-error@^3.0.0: 233 | version "3.1.0" 234 | resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 235 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 236 | dependencies: 237 | clean-stack "^2.0.0" 238 | indent-string "^4.0.0" 239 | 240 | ajv@^6.12.3: 241 | version "6.12.6" 242 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 243 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 244 | dependencies: 245 | fast-deep-equal "^3.1.1" 246 | fast-json-stable-stringify "^2.0.0" 247 | json-schema-traverse "^0.4.1" 248 | uri-js "^4.2.2" 249 | 250 | ansi-regex@^2.0.0: 251 | version "2.1.1" 252 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 253 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 254 | 255 | ansi-regex@^3.0.0: 256 | version "3.0.0" 257 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 258 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 259 | 260 | ansi-regex@^5.0.0: 261 | version "5.0.0" 262 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 263 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 264 | 265 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 266 | version "4.3.0" 267 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 268 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 269 | dependencies: 270 | color-convert "^2.0.1" 271 | 272 | aproba@^1.0.3: 273 | version "1.2.0" 274 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 275 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 276 | 277 | are-we-there-yet@~1.1.2: 278 | version "1.1.5" 279 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 280 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 281 | dependencies: 282 | delegates "^1.0.0" 283 | readable-stream "^2.0.6" 284 | 285 | asn1@~0.2.3: 286 | version "0.2.4" 287 | resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 288 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 289 | dependencies: 290 | safer-buffer "~2.1.0" 291 | 292 | assert-plus@1.0.0, assert-plus@^1.0.0: 293 | version "1.0.0" 294 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 295 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 296 | 297 | asynckit@^0.4.0: 298 | version "0.4.0" 299 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 300 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 301 | 302 | aws-sign2@~0.7.0: 303 | version "0.7.0" 304 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 305 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 306 | 307 | aws4@^1.8.0: 308 | version "1.11.0" 309 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" 310 | integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== 311 | 312 | balanced-match@^1.0.0: 313 | version "1.0.2" 314 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 315 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 316 | 317 | bcrypt-pbkdf@^1.0.0: 318 | version "1.0.2" 319 | resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 320 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 321 | dependencies: 322 | tweetnacl "^0.14.3" 323 | 324 | big-integer@^1.6.7: 325 | version "1.6.48" 326 | resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e" 327 | integrity sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w== 328 | 329 | bplist-parser@^0.1.0: 330 | version "0.1.1" 331 | resolved "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 332 | integrity sha1-1g1dzCDLptx+HymbNdPh+V2vuuY= 333 | dependencies: 334 | big-integer "^1.6.7" 335 | 336 | brace-expansion@^1.1.7: 337 | version "1.1.11" 338 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 339 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 340 | dependencies: 341 | balanced-match "^1.0.0" 342 | concat-map "0.0.1" 343 | 344 | browser-process-hrtime@^1.0.0: 345 | version "1.0.0" 346 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 347 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 348 | 349 | builtins@^1.0.3: 350 | version "1.0.3" 351 | resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 352 | integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= 353 | 354 | cacache@^15.0.5: 355 | version "15.0.6" 356 | resolved "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz#65a8c580fda15b59150fb76bf3f3a8e45d583099" 357 | integrity sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w== 358 | dependencies: 359 | "@npmcli/move-file" "^1.0.1" 360 | chownr "^2.0.0" 361 | fs-minipass "^2.0.0" 362 | glob "^7.1.4" 363 | infer-owner "^1.0.4" 364 | lru-cache "^6.0.0" 365 | minipass "^3.1.1" 366 | minipass-collect "^1.0.2" 367 | minipass-flush "^1.0.5" 368 | minipass-pipeline "^1.2.2" 369 | mkdirp "^1.0.3" 370 | p-map "^4.0.0" 371 | promise-inflight "^1.0.1" 372 | rimraf "^3.0.2" 373 | ssri "^8.0.1" 374 | tar "^6.0.2" 375 | unique-filename "^1.1.1" 376 | 377 | caseless@~0.12.0: 378 | version "0.12.0" 379 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 380 | integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 381 | 382 | chalk@^4.0.0: 383 | version "4.1.0" 384 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 385 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 386 | dependencies: 387 | ansi-styles "^4.1.0" 388 | supports-color "^7.1.0" 389 | 390 | chownr@^2.0.0: 391 | version "2.0.0" 392 | resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 393 | integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 394 | 395 | clean-stack@^2.0.0: 396 | version "2.2.0" 397 | resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 398 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 399 | 400 | cli-spinners@^2.5.0: 401 | version "2.6.0" 402 | resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" 403 | integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== 404 | 405 | code-point-at@^1.0.0: 406 | version "1.1.0" 407 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 408 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 409 | 410 | color-convert@^2.0.1: 411 | version "2.0.1" 412 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 413 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 414 | dependencies: 415 | color-name "~1.1.4" 416 | 417 | color-name@~1.1.4: 418 | version "1.1.4" 419 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 420 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 421 | 422 | combined-stream@^1.0.6, combined-stream@~1.0.6: 423 | version "1.0.8" 424 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 425 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 426 | dependencies: 427 | delayed-stream "~1.0.0" 428 | 429 | concat-map@0.0.1: 430 | version "0.0.1" 431 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 432 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 433 | 434 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 435 | version "1.1.0" 436 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 437 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 438 | 439 | core-util-is@1.0.2, core-util-is@~1.0.0: 440 | version "1.0.2" 441 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 442 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 443 | 444 | cssom@^0.4.4: 445 | version "0.4.4" 446 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 447 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 448 | 449 | cssom@~0.3.6: 450 | version "0.3.8" 451 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 452 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 453 | 454 | cssstyle@^2.3.0: 455 | version "2.3.0" 456 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 457 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 458 | dependencies: 459 | cssom "~0.3.6" 460 | 461 | dashdash@^1.12.0: 462 | version "1.14.1" 463 | resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 464 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 465 | dependencies: 466 | assert-plus "^1.0.0" 467 | 468 | data-urls@^2.0.0: 469 | version "2.0.0" 470 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 471 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 472 | dependencies: 473 | abab "^2.0.3" 474 | whatwg-mimetype "^2.3.0" 475 | whatwg-url "^8.0.0" 476 | 477 | debug@4, debug@^4.1.0: 478 | version "4.3.1" 479 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 480 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 481 | dependencies: 482 | ms "2.1.2" 483 | 484 | decimal.js@^10.2.1: 485 | version "10.2.1" 486 | resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3" 487 | integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw== 488 | 489 | deep-is@~0.1.3: 490 | version "0.1.3" 491 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 492 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 493 | 494 | default-browser-id@^2.0.0: 495 | version "2.0.0" 496 | resolved "https://registry.npmjs.org/default-browser-id/-/default-browser-id-2.0.0.tgz#01ecce371a71e85f15a17177e7863047e73dbe7d" 497 | integrity sha1-AezONxpx6F8VoXF354YwR+c9vn0= 498 | dependencies: 499 | bplist-parser "^0.1.0" 500 | pify "^2.3.0" 501 | untildify "^2.0.0" 502 | 503 | delayed-stream@~1.0.0: 504 | version "1.0.0" 505 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 506 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 507 | 508 | delegates@^1.0.0: 509 | version "1.0.0" 510 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 511 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 512 | 513 | depd@^1.1.2: 514 | version "1.1.2" 515 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 516 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 517 | 518 | diff-sequences@^26.6.2: 519 | version "26.6.2" 520 | resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" 521 | integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== 522 | 523 | domexception@^2.0.1: 524 | version "2.0.1" 525 | resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 526 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 527 | dependencies: 528 | webidl-conversions "^5.0.0" 529 | 530 | ecc-jsbn@~0.1.1: 531 | version "0.1.2" 532 | resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 533 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 534 | dependencies: 535 | jsbn "~0.1.0" 536 | safer-buffer "^2.1.0" 537 | 538 | encoding@^0.1.12: 539 | version "0.1.13" 540 | resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" 541 | integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== 542 | dependencies: 543 | iconv-lite "^0.6.2" 544 | 545 | env-paths@^2.2.0: 546 | version "2.2.1" 547 | resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" 548 | integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== 549 | 550 | err-code@^2.0.2: 551 | version "2.0.3" 552 | resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" 553 | integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== 554 | 555 | esbuild@^0.9.3: 556 | version "0.9.7" 557 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz#ea0d639cbe4b88ec25fbed4d6ff00c8d788ef70b" 558 | integrity sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg== 559 | 560 | escodegen@^2.0.0: 561 | version "2.0.0" 562 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 563 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 564 | dependencies: 565 | esprima "^4.0.1" 566 | estraverse "^5.2.0" 567 | esutils "^2.0.2" 568 | optionator "^0.8.1" 569 | optionalDependencies: 570 | source-map "~0.6.1" 571 | 572 | esprima@^4.0.1: 573 | version "4.0.1" 574 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 575 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 576 | 577 | estraverse@^5.2.0: 578 | version "5.2.0" 579 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 580 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 581 | 582 | esutils@^2.0.2: 583 | version "2.0.3" 584 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 585 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 586 | 587 | extend@~3.0.2: 588 | version "3.0.2" 589 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 590 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 591 | 592 | extsprintf@1.3.0: 593 | version "1.3.0" 594 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 595 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 596 | 597 | extsprintf@^1.2.0: 598 | version "1.4.0" 599 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 600 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 601 | 602 | fast-deep-equal@^3.1.1: 603 | version "3.1.3" 604 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 605 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 606 | 607 | fast-json-stable-stringify@^2.0.0: 608 | version "2.1.0" 609 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 610 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 611 | 612 | fast-levenshtein@~2.0.6: 613 | version "2.0.6" 614 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 615 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 616 | 617 | fdir@^5.0.0: 618 | version "5.0.0" 619 | resolved "https://registry.npmjs.org/fdir/-/fdir-5.0.0.tgz#a40b5d9adfb530daeca55558e8ad87ec14a44769" 620 | integrity sha512-cteqwWMA43lEmgwOg5HSdvhVFD39vHjQDhZkRMlKmeoNPtSSgUw1nUypydiY2upMdGiBFBZvNBDbnoBh0yCzaQ== 621 | 622 | forever-agent@~0.6.1: 623 | version "0.6.1" 624 | resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 625 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 626 | 627 | form-data@~2.3.2: 628 | version "2.3.3" 629 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 630 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 631 | dependencies: 632 | asynckit "^0.4.0" 633 | combined-stream "^1.0.6" 634 | mime-types "^2.1.12" 635 | 636 | fp-ts@^2.10.4: 637 | version "2.10.4" 638 | resolved "https://registry.npmjs.org/fp-ts/-/fp-ts-2.10.4.tgz#f81f34b1c15b3255d65cdbb39508ebb42922aa0c" 639 | integrity sha512-vMTB5zNc9PnE20q145PNbkiL9P9WegwmKVOFloi/NfHnPdAlcob6I3AKqlH/9u3k3/M/GOftZhcJdBrb+NtnDA== 640 | 641 | fs-minipass@^2.0.0, fs-minipass@^2.1.0: 642 | version "2.1.0" 643 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 644 | integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 645 | dependencies: 646 | minipass "^3.0.0" 647 | 648 | fs.realpath@^1.0.0: 649 | version "1.0.0" 650 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 651 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 652 | 653 | fsevents@^2.2.0: 654 | version "2.3.2" 655 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 656 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 657 | 658 | fsevents@~2.1.2: 659 | version "2.1.3" 660 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 661 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 662 | 663 | function-bind@^1.1.1: 664 | version "1.1.1" 665 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 666 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 667 | 668 | gauge@~2.7.3: 669 | version "2.7.4" 670 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 671 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 672 | dependencies: 673 | aproba "^1.0.3" 674 | console-control-strings "^1.0.0" 675 | has-unicode "^2.0.0" 676 | object-assign "^4.1.0" 677 | signal-exit "^3.0.0" 678 | string-width "^1.0.1" 679 | strip-ansi "^3.0.1" 680 | wide-align "^1.1.0" 681 | 682 | getpass@^0.1.1: 683 | version "0.1.7" 684 | resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 685 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 686 | dependencies: 687 | assert-plus "^1.0.0" 688 | 689 | glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 690 | version "7.1.6" 691 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 692 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 693 | dependencies: 694 | fs.realpath "^1.0.0" 695 | inflight "^1.0.4" 696 | inherits "2" 697 | minimatch "^3.0.4" 698 | once "^1.3.0" 699 | path-is-absolute "^1.0.0" 700 | 701 | graceful-fs@^4.2.3: 702 | version "4.2.6" 703 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 704 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 705 | 706 | har-schema@^2.0.0: 707 | version "2.0.0" 708 | resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 709 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 710 | 711 | har-validator@~5.1.3: 712 | version "5.1.5" 713 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" 714 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== 715 | dependencies: 716 | ajv "^6.12.3" 717 | har-schema "^2.0.0" 718 | 719 | has-flag@^4.0.0: 720 | version "4.0.0" 721 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 722 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 723 | 724 | has-unicode@^2.0.0: 725 | version "2.0.1" 726 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 727 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 728 | 729 | has@^1.0.3: 730 | version "1.0.3" 731 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 732 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 733 | dependencies: 734 | function-bind "^1.1.1" 735 | 736 | hosted-git-info@^4.0.1: 737 | version "4.0.2" 738 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" 739 | integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== 740 | dependencies: 741 | lru-cache "^6.0.0" 742 | 743 | html-encoding-sniffer@^2.0.1: 744 | version "2.0.1" 745 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 746 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 747 | dependencies: 748 | whatwg-encoding "^1.0.5" 749 | 750 | http-cache-semantics@^4.1.0: 751 | version "4.1.0" 752 | resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 753 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 754 | 755 | http-proxy-agent@^4.0.1: 756 | version "4.0.1" 757 | resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 758 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 759 | dependencies: 760 | "@tootallnate/once" "1" 761 | agent-base "6" 762 | debug "4" 763 | 764 | http-signature@~1.2.0: 765 | version "1.2.0" 766 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 767 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 768 | dependencies: 769 | assert-plus "^1.0.0" 770 | jsprim "^1.2.2" 771 | sshpk "^1.7.0" 772 | 773 | https-proxy-agent@^5.0.0: 774 | version "5.0.0" 775 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 776 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 777 | dependencies: 778 | agent-base "6" 779 | debug "4" 780 | 781 | humanize-ms@^1.2.1: 782 | version "1.2.1" 783 | resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" 784 | integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= 785 | dependencies: 786 | ms "^2.0.0" 787 | 788 | iconv-lite@0.4.24: 789 | version "0.4.24" 790 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 791 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 792 | dependencies: 793 | safer-buffer ">= 2.1.2 < 3" 794 | 795 | iconv-lite@^0.6.2: 796 | version "0.6.2" 797 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" 798 | integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ== 799 | dependencies: 800 | safer-buffer ">= 2.1.2 < 3.0.0" 801 | 802 | ignore-walk@^3.0.3: 803 | version "3.0.3" 804 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 805 | integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== 806 | dependencies: 807 | minimatch "^3.0.4" 808 | 809 | imurmurhash@^0.1.4: 810 | version "0.1.4" 811 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 812 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 813 | 814 | indent-string@^4.0.0: 815 | version "4.0.0" 816 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 817 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 818 | 819 | infer-owner@^1.0.4: 820 | version "1.0.4" 821 | resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 822 | integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== 823 | 824 | inflight@^1.0.4: 825 | version "1.0.6" 826 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 827 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 828 | dependencies: 829 | once "^1.3.0" 830 | wrappy "1" 831 | 832 | inherits@2, inherits@~2.0.3: 833 | version "2.0.4" 834 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 835 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 836 | 837 | io-ts@^2.2.16: 838 | version "2.2.16" 839 | resolved "https://registry.npmjs.org/io-ts/-/io-ts-2.2.16.tgz#597dffa03db1913fc318c9c6df6931cb4ed808b2" 840 | integrity sha512-y5TTSa6VP6le0hhmIyN0dqEXkrZeJLeC5KApJq6VLci3UEKF80lZ+KuoUs02RhBxNWlrqSNxzfI7otLX1Euv8Q== 841 | 842 | ip@^1.1.5: 843 | version "1.1.5" 844 | resolved "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 845 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= 846 | 847 | is-core-module@^2.2.0: 848 | version "2.2.0" 849 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 850 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 851 | dependencies: 852 | has "^1.0.3" 853 | 854 | is-docker@^2.0.0: 855 | version "2.2.1" 856 | resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 857 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 858 | 859 | is-fullwidth-code-point@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 862 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 863 | dependencies: 864 | number-is-nan "^1.0.0" 865 | 866 | is-fullwidth-code-point@^2.0.0: 867 | version "2.0.0" 868 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 869 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 870 | 871 | is-lambda@^1.0.1: 872 | version "1.0.1" 873 | resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" 874 | integrity sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU= 875 | 876 | is-potential-custom-element-name@^1.0.0: 877 | version "1.0.1" 878 | resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 879 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 880 | 881 | is-typedarray@~1.0.0: 882 | version "1.0.0" 883 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 884 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 885 | 886 | is-wsl@^2.1.1: 887 | version "2.2.0" 888 | resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 889 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 890 | dependencies: 891 | is-docker "^2.0.0" 892 | 893 | isarray@~1.0.0: 894 | version "1.0.0" 895 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 896 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 897 | 898 | isexe@^2.0.0: 899 | version "2.0.0" 900 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 901 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 902 | 903 | isstream@~0.1.2: 904 | version "0.1.2" 905 | resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 906 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 907 | 908 | iterable@^5.6.0, iterable@^5.7.0: 909 | version "5.7.0" 910 | resolved "https://registry.npmjs.org/iterable/-/iterable-5.7.0.tgz#6937296d3380c227f55fd5ca299e41a821d573f7" 911 | integrity sha512-xLERMG+ha4eAxSkms2iaJbjFW5V2uB8vFZVq6Kh+YwPax29IwMTdOIOoieeXOu6+nV0+xe82i2H346RLvsyigA== 912 | 913 | jest-diff@^26.0.0: 914 | version "26.6.2" 915 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" 916 | integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== 917 | dependencies: 918 | chalk "^4.0.0" 919 | diff-sequences "^26.6.2" 920 | jest-get-type "^26.3.0" 921 | pretty-format "^26.6.2" 922 | 923 | jest-get-type@^26.3.0: 924 | version "26.3.0" 925 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 926 | integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== 927 | 928 | jsbn@~0.1.0: 929 | version "0.1.1" 930 | resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 931 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 932 | 933 | jsdom@^16.5.3: 934 | version "16.5.3" 935 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz#13a755b3950eb938b4482c407238ddf16f0d2136" 936 | integrity sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA== 937 | dependencies: 938 | abab "^2.0.5" 939 | acorn "^8.1.0" 940 | acorn-globals "^6.0.0" 941 | cssom "^0.4.4" 942 | cssstyle "^2.3.0" 943 | data-urls "^2.0.0" 944 | decimal.js "^10.2.1" 945 | domexception "^2.0.1" 946 | escodegen "^2.0.0" 947 | html-encoding-sniffer "^2.0.1" 948 | is-potential-custom-element-name "^1.0.0" 949 | nwsapi "^2.2.0" 950 | parse5 "6.0.1" 951 | request "^2.88.2" 952 | request-promise-native "^1.0.9" 953 | saxes "^5.0.1" 954 | symbol-tree "^3.2.4" 955 | tough-cookie "^4.0.0" 956 | w3c-hr-time "^1.0.2" 957 | w3c-xmlserializer "^2.0.0" 958 | webidl-conversions "^6.1.0" 959 | whatwg-encoding "^1.0.5" 960 | whatwg-mimetype "^2.3.0" 961 | whatwg-url "^8.5.0" 962 | ws "^7.4.4" 963 | xml-name-validator "^3.0.0" 964 | 965 | json-parse-even-better-errors@^2.3.0: 966 | version "2.3.1" 967 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 968 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 969 | 970 | json-schema-traverse@^0.4.1: 971 | version "0.4.1" 972 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 973 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 974 | 975 | json-schema@0.2.3: 976 | version "0.2.3" 977 | resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 978 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 979 | 980 | json-stringify-safe@~5.0.1: 981 | version "5.0.1" 982 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 983 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 984 | 985 | jsonparse@^1.3.1: 986 | version "1.3.1" 987 | resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 988 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 989 | 990 | jsprim@^1.2.2: 991 | version "1.4.1" 992 | resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 993 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 994 | dependencies: 995 | assert-plus "1.0.0" 996 | extsprintf "1.3.0" 997 | json-schema "0.2.3" 998 | verror "1.10.0" 999 | 1000 | levn@~0.3.0: 1001 | version "0.3.0" 1002 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1003 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1004 | dependencies: 1005 | prelude-ls "~1.1.2" 1006 | type-check "~0.3.2" 1007 | 1008 | lodash@^4.17.19, lodash@^4.7.0: 1009 | version "4.17.21" 1010 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1011 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1012 | 1013 | lru-cache@^6.0.0: 1014 | version "6.0.0" 1015 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1016 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1017 | dependencies: 1018 | yallist "^4.0.0" 1019 | 1020 | make-fetch-happen@^8.0.9: 1021 | version "8.0.14" 1022 | resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz#aaba73ae0ab5586ad8eaa68bd83332669393e222" 1023 | integrity sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ== 1024 | dependencies: 1025 | agentkeepalive "^4.1.3" 1026 | cacache "^15.0.5" 1027 | http-cache-semantics "^4.1.0" 1028 | http-proxy-agent "^4.0.1" 1029 | https-proxy-agent "^5.0.0" 1030 | is-lambda "^1.0.1" 1031 | lru-cache "^6.0.0" 1032 | minipass "^3.1.3" 1033 | minipass-collect "^1.0.2" 1034 | minipass-fetch "^1.3.2" 1035 | minipass-flush "^1.0.5" 1036 | minipass-pipeline "^1.2.4" 1037 | promise-retry "^2.0.1" 1038 | socks-proxy-agent "^5.0.0" 1039 | ssri "^8.0.0" 1040 | 1041 | microtask-collector@^3.1.0: 1042 | version "3.1.0" 1043 | resolved "https://registry.npmjs.org/microtask-collector/-/microtask-collector-3.1.0.tgz#a2ab49c1d5ea436ecaed027373b8a19a53b84f79" 1044 | integrity sha512-hqriS8rmSdcrnyxY8c1yA7Zb1PKLEQxxm1A5d53ZzxaMSpOWbW98zdKnjtJU6BCSANCu5C3rfcyxldXcTUQS9w== 1045 | dependencies: 1046 | "@opennetwork/linked-list" "^4.0.0" 1047 | 1048 | mime-db@1.47.0: 1049 | version "1.47.0" 1050 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" 1051 | integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw== 1052 | 1053 | mime-types@^2.1.12, mime-types@~2.1.19: 1054 | version "2.1.30" 1055 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" 1056 | integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg== 1057 | dependencies: 1058 | mime-db "1.47.0" 1059 | 1060 | minimatch@^3.0.4: 1061 | version "3.0.4" 1062 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1063 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1064 | dependencies: 1065 | brace-expansion "^1.1.7" 1066 | 1067 | minipass-collect@^1.0.2: 1068 | version "1.0.2" 1069 | resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" 1070 | integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== 1071 | dependencies: 1072 | minipass "^3.0.0" 1073 | 1074 | minipass-fetch@^1.3.0, minipass-fetch@^1.3.2: 1075 | version "1.3.3" 1076 | resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.3.tgz#34c7cea038c817a8658461bf35174551dce17a0a" 1077 | integrity sha512-akCrLDWfbdAWkMLBxJEeWTdNsjML+dt5YgOI4gJ53vuO0vrmYQkUPxa6j6V65s9CcePIr2SSWqjT2EcrNseryQ== 1078 | dependencies: 1079 | minipass "^3.1.0" 1080 | minipass-sized "^1.0.3" 1081 | minizlib "^2.0.0" 1082 | optionalDependencies: 1083 | encoding "^0.1.12" 1084 | 1085 | minipass-flush@^1.0.5: 1086 | version "1.0.5" 1087 | resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" 1088 | integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== 1089 | dependencies: 1090 | minipass "^3.0.0" 1091 | 1092 | minipass-json-stream@^1.0.1: 1093 | version "1.0.1" 1094 | resolved "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" 1095 | integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== 1096 | dependencies: 1097 | jsonparse "^1.3.1" 1098 | minipass "^3.0.0" 1099 | 1100 | minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: 1101 | version "1.2.4" 1102 | resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" 1103 | integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== 1104 | dependencies: 1105 | minipass "^3.0.0" 1106 | 1107 | minipass-sized@^1.0.3: 1108 | version "1.0.3" 1109 | resolved "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" 1110 | integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== 1111 | dependencies: 1112 | minipass "^3.0.0" 1113 | 1114 | minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: 1115 | version "3.1.3" 1116 | resolved "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" 1117 | integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== 1118 | dependencies: 1119 | yallist "^4.0.0" 1120 | 1121 | minizlib@^2.0.0, minizlib@^2.1.1: 1122 | version "2.1.2" 1123 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 1124 | integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 1125 | dependencies: 1126 | minipass "^3.0.0" 1127 | yallist "^4.0.0" 1128 | 1129 | mkdirp@^1.0.3, mkdirp@^1.0.4: 1130 | version "1.0.4" 1131 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1132 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1133 | 1134 | ms@2.1.2: 1135 | version "2.1.2" 1136 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1137 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1138 | 1139 | ms@^2.0.0: 1140 | version "2.1.3" 1141 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1142 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1143 | 1144 | node-gyp@^7.1.0: 1145 | version "7.1.2" 1146 | resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz#21a810aebb187120251c3bcec979af1587b188ae" 1147 | integrity sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ== 1148 | dependencies: 1149 | env-paths "^2.2.0" 1150 | glob "^7.1.4" 1151 | graceful-fs "^4.2.3" 1152 | nopt "^5.0.0" 1153 | npmlog "^4.1.2" 1154 | request "^2.88.2" 1155 | rimraf "^3.0.2" 1156 | semver "^7.3.2" 1157 | tar "^6.0.2" 1158 | which "^2.0.2" 1159 | 1160 | nopt@^5.0.0: 1161 | version "5.0.0" 1162 | resolved "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 1163 | integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 1164 | dependencies: 1165 | abbrev "1" 1166 | 1167 | npm-bundled@^1.1.1: 1168 | version "1.1.1" 1169 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" 1170 | integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== 1171 | dependencies: 1172 | npm-normalize-package-bin "^1.0.1" 1173 | 1174 | npm-install-checks@^4.0.0: 1175 | version "4.0.0" 1176 | resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz#a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4" 1177 | integrity sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w== 1178 | dependencies: 1179 | semver "^7.1.1" 1180 | 1181 | npm-normalize-package-bin@^1.0.1: 1182 | version "1.0.1" 1183 | resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" 1184 | integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== 1185 | 1186 | npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.2: 1187 | version "8.1.2" 1188 | resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.2.tgz#b868016ae7de5619e729993fbd8d11dc3c52ab62" 1189 | integrity sha512-6Eem455JsSMJY6Kpd3EyWE+n5hC+g9bSyHr9K9U2zqZb7+02+hObQ2c0+8iDk/mNF+8r1MhY44WypKJAkySIYA== 1190 | dependencies: 1191 | hosted-git-info "^4.0.1" 1192 | semver "^7.3.4" 1193 | validate-npm-package-name "^3.0.0" 1194 | 1195 | npm-packlist@^2.1.4: 1196 | version "2.1.5" 1197 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.5.tgz#43ef5bbb9f59b7c0ef91e0905f1dd707b4cfb33c" 1198 | integrity sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ== 1199 | dependencies: 1200 | glob "^7.1.6" 1201 | ignore-walk "^3.0.3" 1202 | npm-bundled "^1.1.1" 1203 | npm-normalize-package-bin "^1.0.1" 1204 | 1205 | npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.1: 1206 | version "6.1.1" 1207 | resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148" 1208 | integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA== 1209 | dependencies: 1210 | npm-install-checks "^4.0.0" 1211 | npm-normalize-package-bin "^1.0.1" 1212 | npm-package-arg "^8.1.2" 1213 | semver "^7.3.4" 1214 | 1215 | npm-registry-fetch@^9.0.0: 1216 | version "9.0.0" 1217 | resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-9.0.0.tgz#86f3feb4ce00313bc0b8f1f8f69daae6face1661" 1218 | integrity sha512-PuFYYtnQ8IyVl6ib9d3PepeehcUeHN9IO5N/iCRhyg9tStQcqGQBRVHmfmMWPDERU3KwZoHFvbJ4FPXPspvzbA== 1219 | dependencies: 1220 | "@npmcli/ci-detect" "^1.0.0" 1221 | lru-cache "^6.0.0" 1222 | make-fetch-happen "^8.0.9" 1223 | minipass "^3.1.3" 1224 | minipass-fetch "^1.3.0" 1225 | minipass-json-stream "^1.0.1" 1226 | minizlib "^2.0.0" 1227 | npm-package-arg "^8.0.0" 1228 | 1229 | npmlog@^4.1.2: 1230 | version "4.1.2" 1231 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1232 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 1233 | dependencies: 1234 | are-we-there-yet "~1.1.2" 1235 | console-control-strings "~1.1.0" 1236 | gauge "~2.7.3" 1237 | set-blocking "~2.0.0" 1238 | 1239 | number-is-nan@^1.0.0: 1240 | version "1.0.1" 1241 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1242 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1243 | 1244 | nwsapi@^2.2.0: 1245 | version "2.2.0" 1246 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 1247 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 1248 | 1249 | oauth-sign@~0.9.0: 1250 | version "0.9.0" 1251 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1252 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 1253 | 1254 | object-assign@^4.1.0: 1255 | version "4.1.1" 1256 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1257 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1258 | 1259 | once@^1.3.0: 1260 | version "1.4.0" 1261 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1262 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1263 | dependencies: 1264 | wrappy "1" 1265 | 1266 | open@^7.0.4: 1267 | version "7.4.2" 1268 | resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" 1269 | integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== 1270 | dependencies: 1271 | is-docker "^2.0.0" 1272 | is-wsl "^2.1.1" 1273 | 1274 | optionator@^0.8.1: 1275 | version "0.8.3" 1276 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 1277 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 1278 | dependencies: 1279 | deep-is "~0.1.3" 1280 | fast-levenshtein "~2.0.6" 1281 | levn "~0.3.0" 1282 | prelude-ls "~1.1.2" 1283 | type-check "~0.3.2" 1284 | word-wrap "~1.2.3" 1285 | 1286 | os-homedir@^1.0.0: 1287 | version "1.0.2" 1288 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1289 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1290 | 1291 | p-map@^4.0.0: 1292 | version "4.0.0" 1293 | resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 1294 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 1295 | dependencies: 1296 | aggregate-error "^3.0.0" 1297 | 1298 | pacote@^11.3.1: 1299 | version "11.3.1" 1300 | resolved "https://registry.npmjs.org/pacote/-/pacote-11.3.1.tgz#6ce95dd230db475cbd8789fd1f986bec51b4bf7c" 1301 | integrity sha512-TymtwoAG12cczsJIrwI/euOQKtjrQHlD0k0oyt9QSmZGpqa+KdlxKdWR/YUjYizkixaVyztxt/Wsfo8bL3A6Fg== 1302 | dependencies: 1303 | "@npmcli/git" "^2.0.1" 1304 | "@npmcli/installed-package-contents" "^1.0.6" 1305 | "@npmcli/promise-spawn" "^1.2.0" 1306 | "@npmcli/run-script" "^1.8.2" 1307 | cacache "^15.0.5" 1308 | chownr "^2.0.0" 1309 | fs-minipass "^2.1.0" 1310 | infer-owner "^1.0.4" 1311 | minipass "^3.1.3" 1312 | mkdirp "^1.0.3" 1313 | npm-package-arg "^8.0.1" 1314 | npm-packlist "^2.1.4" 1315 | npm-pick-manifest "^6.0.0" 1316 | npm-registry-fetch "^9.0.0" 1317 | promise-retry "^2.0.1" 1318 | read-package-json-fast "^2.0.1" 1319 | rimraf "^3.0.2" 1320 | ssri "^8.0.1" 1321 | tar "^6.1.0" 1322 | 1323 | parse5@6.0.1: 1324 | version "6.0.1" 1325 | resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 1326 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 1327 | 1328 | path-is-absolute@^1.0.0: 1329 | version "1.0.1" 1330 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1331 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1332 | 1333 | path-parse@^1.0.6: 1334 | version "1.0.6" 1335 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1336 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1337 | 1338 | performance-now@^2.1.0: 1339 | version "2.1.0" 1340 | resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1341 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 1342 | 1343 | picomatch@^2.2.2: 1344 | version "2.2.3" 1345 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" 1346 | integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== 1347 | 1348 | pify@^2.3.0: 1349 | version "2.3.0" 1350 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1351 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1352 | 1353 | prelude-ls@~1.1.2: 1354 | version "1.1.2" 1355 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1356 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 1357 | 1358 | pretty-format@^26.0.0, pretty-format@^26.6.2: 1359 | version "26.6.2" 1360 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" 1361 | integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== 1362 | dependencies: 1363 | "@jest/types" "^26.6.2" 1364 | ansi-regex "^5.0.0" 1365 | ansi-styles "^4.0.0" 1366 | react-is "^17.0.1" 1367 | 1368 | process-nextick-args@~2.0.0: 1369 | version "2.0.1" 1370 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1371 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1372 | 1373 | promise-inflight@^1.0.1: 1374 | version "1.0.1" 1375 | resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 1376 | integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 1377 | 1378 | promise-retry@^2.0.1: 1379 | version "2.0.1" 1380 | resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" 1381 | integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== 1382 | dependencies: 1383 | err-code "^2.0.2" 1384 | retry "^0.12.0" 1385 | 1386 | psl@^1.1.28, psl@^1.1.33: 1387 | version "1.8.0" 1388 | resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 1389 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 1390 | 1391 | punycode@^2.1.0, punycode@^2.1.1: 1392 | version "2.1.1" 1393 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1394 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1395 | 1396 | qs@~6.5.2: 1397 | version "6.5.2" 1398 | resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1399 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 1400 | 1401 | react-is@^17.0.1: 1402 | version "17.0.2" 1403 | resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 1404 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 1405 | 1406 | read-package-json-fast@^2.0.1: 1407 | version "2.0.2" 1408 | resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.2.tgz#2dcb24d9e8dd50fb322042c8c35a954e6cc7ac9e" 1409 | integrity sha512-5fyFUyO9B799foVk4n6ylcoAktG/FbE3jwRKxvwaeSrIunaoMc0u81dzXxjeAFKOce7O5KncdfwpGvvs6r5PsQ== 1410 | dependencies: 1411 | json-parse-even-better-errors "^2.3.0" 1412 | npm-normalize-package-bin "^1.0.1" 1413 | 1414 | readable-stream@^2.0.6: 1415 | version "2.3.7" 1416 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1417 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1418 | dependencies: 1419 | core-util-is "~1.0.0" 1420 | inherits "~2.0.3" 1421 | isarray "~1.0.0" 1422 | process-nextick-args "~2.0.0" 1423 | safe-buffer "~5.1.1" 1424 | string_decoder "~1.1.1" 1425 | util-deprecate "~1.0.1" 1426 | 1427 | request-promise-core@1.1.4: 1428 | version "1.1.4" 1429 | resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" 1430 | integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== 1431 | dependencies: 1432 | lodash "^4.17.19" 1433 | 1434 | request-promise-native@^1.0.9: 1435 | version "1.0.9" 1436 | resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" 1437 | integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== 1438 | dependencies: 1439 | request-promise-core "1.1.4" 1440 | stealthy-require "^1.1.1" 1441 | tough-cookie "^2.3.3" 1442 | 1443 | request@^2.88.2: 1444 | version "2.88.2" 1445 | resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 1446 | integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== 1447 | dependencies: 1448 | aws-sign2 "~0.7.0" 1449 | aws4 "^1.8.0" 1450 | caseless "~0.12.0" 1451 | combined-stream "~1.0.6" 1452 | extend "~3.0.2" 1453 | forever-agent "~0.6.1" 1454 | form-data "~2.3.2" 1455 | har-validator "~5.1.3" 1456 | http-signature "~1.2.0" 1457 | is-typedarray "~1.0.0" 1458 | isstream "~0.1.2" 1459 | json-stringify-safe "~5.0.1" 1460 | mime-types "~2.1.19" 1461 | oauth-sign "~0.9.0" 1462 | performance-now "^2.1.0" 1463 | qs "~6.5.2" 1464 | safe-buffer "^5.1.2" 1465 | tough-cookie "~2.5.0" 1466 | tunnel-agent "^0.6.0" 1467 | uuid "^3.3.2" 1468 | 1469 | resolve@^1.20.0: 1470 | version "1.20.0" 1471 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 1472 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 1473 | dependencies: 1474 | is-core-module "^2.2.0" 1475 | path-parse "^1.0.6" 1476 | 1477 | retry@^0.12.0: 1478 | version "0.12.0" 1479 | resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" 1480 | integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= 1481 | 1482 | rimraf@^3.0.2: 1483 | version "3.0.2" 1484 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1485 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1486 | dependencies: 1487 | glob "^7.1.3" 1488 | 1489 | rollup@~2.37.1: 1490 | version "2.37.1" 1491 | resolved "https://registry.npmjs.org/rollup/-/rollup-2.37.1.tgz#aa7aadffd75c80393f9314f9857e851b0ffd34e7" 1492 | integrity sha512-V3ojEeyGeSdrMSuhP3diBb06P+qV4gKQeanbDv+Qh/BZbhdZ7kHV0xAt8Yjk4GFshq/WjO7R4c7DFM20AwTFVQ== 1493 | optionalDependencies: 1494 | fsevents "~2.1.2" 1495 | 1496 | safe-buffer@^5.0.1, safe-buffer@^5.1.2: 1497 | version "5.2.1" 1498 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1499 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1500 | 1501 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1502 | version "5.1.2" 1503 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1504 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1505 | 1506 | "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1507 | version "2.1.2" 1508 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1509 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1510 | 1511 | saxes@^5.0.1: 1512 | version "5.0.1" 1513 | resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 1514 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 1515 | dependencies: 1516 | xmlchars "^2.2.0" 1517 | 1518 | semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: 1519 | version "7.3.5" 1520 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1521 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1522 | dependencies: 1523 | lru-cache "^6.0.0" 1524 | 1525 | set-blocking@~2.0.0: 1526 | version "2.0.0" 1527 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1528 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1529 | 1530 | signal-exit@^3.0.0: 1531 | version "3.0.3" 1532 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1533 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1534 | 1535 | smart-buffer@^4.1.0: 1536 | version "4.1.0" 1537 | resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" 1538 | integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw== 1539 | 1540 | snowpack@^3.3.5: 1541 | version "3.3.5" 1542 | resolved "https://registry.npmjs.org/snowpack/-/snowpack-3.3.5.tgz#b646ede049f0fc0c23e55bd3af579929f273cc79" 1543 | integrity sha512-QI6/PcSud39ZAmrs7IiBSCr3PWXxc4/w2SNJp32+n7XsXxSB4waJ+jpG5rtJAeif5pqRNkX4887PKwWsMzFRCw== 1544 | dependencies: 1545 | cli-spinners "^2.5.0" 1546 | default-browser-id "^2.0.0" 1547 | esbuild "^0.9.3" 1548 | fdir "^5.0.0" 1549 | open "^7.0.4" 1550 | pacote "^11.3.1" 1551 | picomatch "^2.2.2" 1552 | resolve "^1.20.0" 1553 | rollup "~2.37.1" 1554 | optionalDependencies: 1555 | fsevents "^2.2.0" 1556 | 1557 | socks-proxy-agent@^5.0.0: 1558 | version "5.0.0" 1559 | resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.0.tgz#7c0f364e7b1cf4a7a437e71253bed72e9004be60" 1560 | integrity sha512-lEpa1zsWCChxiynk+lCycKuC502RxDWLKJZoIhnxrWNjLSDGYRFflHA1/228VkRcnv9TIb8w98derGbpKxJRgA== 1561 | dependencies: 1562 | agent-base "6" 1563 | debug "4" 1564 | socks "^2.3.3" 1565 | 1566 | socks@^2.3.3: 1567 | version "2.6.1" 1568 | resolved "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz#989e6534a07cf337deb1b1c94aaa44296520d30e" 1569 | integrity sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA== 1570 | dependencies: 1571 | ip "^1.1.5" 1572 | smart-buffer "^4.1.0" 1573 | 1574 | source-map@~0.6.1: 1575 | version "0.6.1" 1576 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1577 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1578 | 1579 | sshpk@^1.7.0: 1580 | version "1.16.1" 1581 | resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1582 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 1583 | dependencies: 1584 | asn1 "~0.2.3" 1585 | assert-plus "^1.0.0" 1586 | bcrypt-pbkdf "^1.0.0" 1587 | dashdash "^1.12.0" 1588 | ecc-jsbn "~0.1.1" 1589 | getpass "^0.1.1" 1590 | jsbn "~0.1.0" 1591 | safer-buffer "^2.0.2" 1592 | tweetnacl "~0.14.0" 1593 | 1594 | ssri@^8.0.0, ssri@^8.0.1: 1595 | version "8.0.1" 1596 | resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" 1597 | integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== 1598 | dependencies: 1599 | minipass "^3.1.1" 1600 | 1601 | stealthy-require@^1.1.1: 1602 | version "1.1.1" 1603 | resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 1604 | integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 1605 | 1606 | string-width@^1.0.1: 1607 | version "1.0.2" 1608 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1609 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1610 | dependencies: 1611 | code-point-at "^1.0.0" 1612 | is-fullwidth-code-point "^1.0.0" 1613 | strip-ansi "^3.0.0" 1614 | 1615 | "string-width@^1.0.2 || 2": 1616 | version "2.1.1" 1617 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1618 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1619 | dependencies: 1620 | is-fullwidth-code-point "^2.0.0" 1621 | strip-ansi "^4.0.0" 1622 | 1623 | string_decoder@~1.1.1: 1624 | version "1.1.1" 1625 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1626 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1627 | dependencies: 1628 | safe-buffer "~5.1.0" 1629 | 1630 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1631 | version "3.0.1" 1632 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1633 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1634 | dependencies: 1635 | ansi-regex "^2.0.0" 1636 | 1637 | strip-ansi@^4.0.0: 1638 | version "4.0.0" 1639 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1640 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1641 | dependencies: 1642 | ansi-regex "^3.0.0" 1643 | 1644 | supports-color@^7.1.0: 1645 | version "7.2.0" 1646 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1647 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1648 | dependencies: 1649 | has-flag "^4.0.0" 1650 | 1651 | symbol-tree@^3.2.4: 1652 | version "3.2.4" 1653 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 1654 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 1655 | 1656 | tar@^6.0.2, tar@^6.1.0: 1657 | version "6.1.0" 1658 | resolved "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83" 1659 | integrity sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA== 1660 | dependencies: 1661 | chownr "^2.0.0" 1662 | fs-minipass "^2.0.0" 1663 | minipass "^3.0.0" 1664 | minizlib "^2.1.1" 1665 | mkdirp "^1.0.3" 1666 | yallist "^4.0.0" 1667 | 1668 | tough-cookie@^2.3.3, tough-cookie@~2.5.0: 1669 | version "2.5.0" 1670 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 1671 | integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 1672 | dependencies: 1673 | psl "^1.1.28" 1674 | punycode "^2.1.1" 1675 | 1676 | tough-cookie@^4.0.0: 1677 | version "4.0.0" 1678 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 1679 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 1680 | dependencies: 1681 | psl "^1.1.33" 1682 | punycode "^2.1.1" 1683 | universalify "^0.1.2" 1684 | 1685 | tr46@^2.0.2: 1686 | version "2.0.2" 1687 | resolved "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479" 1688 | integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg== 1689 | dependencies: 1690 | punycode "^2.1.1" 1691 | 1692 | tunnel-agent@^0.6.0: 1693 | version "0.6.0" 1694 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1695 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 1696 | dependencies: 1697 | safe-buffer "^5.0.1" 1698 | 1699 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1700 | version "0.14.5" 1701 | resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1702 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 1703 | 1704 | type-check@~0.3.2: 1705 | version "0.3.2" 1706 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1707 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 1708 | dependencies: 1709 | prelude-ls "~1.1.2" 1710 | 1711 | typescript@^4.2.3: 1712 | version "4.2.4" 1713 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961" 1714 | integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg== 1715 | 1716 | unique-filename@^1.1.1: 1717 | version "1.1.1" 1718 | resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 1719 | integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== 1720 | dependencies: 1721 | unique-slug "^2.0.0" 1722 | 1723 | unique-slug@^2.0.0: 1724 | version "2.0.2" 1725 | resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" 1726 | integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== 1727 | dependencies: 1728 | imurmurhash "^0.1.4" 1729 | 1730 | universalify@^0.1.2: 1731 | version "0.1.2" 1732 | resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1733 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1734 | 1735 | untildify@^2.0.0: 1736 | version "2.1.0" 1737 | resolved "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz#17eb2807987f76952e9c0485fc311d06a826a2e0" 1738 | integrity sha1-F+soB5h/dpUunASF/DEdBqgmouA= 1739 | dependencies: 1740 | os-homedir "^1.0.0" 1741 | 1742 | uri-js@^4.2.2: 1743 | version "4.4.1" 1744 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1745 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1746 | dependencies: 1747 | punycode "^2.1.0" 1748 | 1749 | util-deprecate@~1.0.1: 1750 | version "1.0.2" 1751 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1752 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1753 | 1754 | uuid@^3.3.2: 1755 | version "3.4.0" 1756 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 1757 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 1758 | 1759 | validate-npm-package-name@^3.0.0: 1760 | version "3.0.0" 1761 | resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 1762 | integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= 1763 | dependencies: 1764 | builtins "^1.0.3" 1765 | 1766 | verror@1.10.0: 1767 | version "1.10.0" 1768 | resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1769 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 1770 | dependencies: 1771 | assert-plus "^1.0.0" 1772 | core-util-is "1.0.2" 1773 | extsprintf "^1.2.0" 1774 | 1775 | w3c-hr-time@^1.0.2: 1776 | version "1.0.2" 1777 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 1778 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 1779 | dependencies: 1780 | browser-process-hrtime "^1.0.0" 1781 | 1782 | w3c-xmlserializer@^2.0.0: 1783 | version "2.0.0" 1784 | resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 1785 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 1786 | dependencies: 1787 | xml-name-validator "^3.0.0" 1788 | 1789 | webidl-conversions@^5.0.0: 1790 | version "5.0.0" 1791 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 1792 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 1793 | 1794 | webidl-conversions@^6.1.0: 1795 | version "6.1.0" 1796 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 1797 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 1798 | 1799 | whatwg-encoding@^1.0.5: 1800 | version "1.0.5" 1801 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 1802 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 1803 | dependencies: 1804 | iconv-lite "0.4.24" 1805 | 1806 | whatwg-mimetype@^2.3.0: 1807 | version "2.3.0" 1808 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 1809 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 1810 | 1811 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 1812 | version "8.5.0" 1813 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz#7752b8464fc0903fec89aa9846fc9efe07351fd3" 1814 | integrity sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg== 1815 | dependencies: 1816 | lodash "^4.7.0" 1817 | tr46 "^2.0.2" 1818 | webidl-conversions "^6.1.0" 1819 | 1820 | which@^2.0.2: 1821 | version "2.0.2" 1822 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1823 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1824 | dependencies: 1825 | isexe "^2.0.0" 1826 | 1827 | wide-align@^1.1.0: 1828 | version "1.1.3" 1829 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1830 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 1831 | dependencies: 1832 | string-width "^1.0.2 || 2" 1833 | 1834 | word-wrap@~1.2.3: 1835 | version "1.2.3" 1836 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1837 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1838 | 1839 | wrappy@1: 1840 | version "1.0.2" 1841 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1842 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1843 | 1844 | ws@^7.4.4: 1845 | version "7.4.5" 1846 | resolved "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" 1847 | integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== 1848 | 1849 | xml-name-validator@^3.0.0: 1850 | version "3.0.0" 1851 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 1852 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 1853 | 1854 | xmlchars@^2.2.0: 1855 | version "2.2.0" 1856 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 1857 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 1858 | 1859 | yallist@^4.0.0: 1860 | version "4.0.0" 1861 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1862 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1863 | --------------------------------------------------------------------------------