├── .npmignore ├── src ├── index.ts ├── hooks │ ├── useWallet │ │ ├── index.ts │ │ ├── types.ts │ │ └── useWallet.tsx │ ├── useQueryClient │ │ ├── index.ts │ │ └── UseQueryClient.tsx │ ├── useSigningClient │ │ ├── index.ts │ │ └── UseSigningClient.tsx │ └── index.ts └── types │ └── config.ts ├── .gitignore ├── .prettierrc ├── tsconfig.json ├── .github └── workflows │ └── publish.yaml ├── package.json ├── CHANGELOG.md ├── README.md ├── LICENSE ├── yarn.lock └── yarn-error.log /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | node_modules 3 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hooks' 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | lib 4 | -------------------------------------------------------------------------------- /src/hooks/useWallet/index.ts: -------------------------------------------------------------------------------- 1 | export {default as useWallet} from './useWallet' 2 | -------------------------------------------------------------------------------- /src/hooks/useQueryClient/index.ts: -------------------------------------------------------------------------------- 1 | export { default as useQueryClient } from './UseQueryClient'; 2 | -------------------------------------------------------------------------------- /src/hooks/useSigningClient/index.ts: -------------------------------------------------------------------------------- 1 | export {default as useSigningClient} from './UseSigningClient' 2 | -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useQueryClient'; 2 | export * from './useSigningClient'; 3 | export * from './useWallet'; 4 | -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- 1 | export type ChainConfiguration = 'testnet' | 'devnet' | { chainId: string, restUrl: string, rpcUrl: string } 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "bracketSpacing": true, 4 | "jsxBracketSameLine": true, 5 | "printWidth": 164, 6 | "singleQuote": true, 7 | "jsxSingleQuote": true, 8 | "trailingComma": "none", 9 | "arrowParens": "always", 10 | "useTabs": true 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "declaration": true, 6 | "outDir": "./lib", 7 | "strict": true, 8 | "jsx": "react", 9 | "allowSyntheticDefaultImports": true, 10 | "skipLibCheck": true, 11 | "noImplicitAny": false, 12 | "lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include"] 13 | }, 14 | "include": [ 15 | "src" 16 | ], 17 | "exclude": ["node_modules"] 18 | } 19 | -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- 1 | name: Publish Package to npmjs 2 | on: 3 | release: 4 | types: [created] 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v3 10 | # Setup .npmrc file to publish to npm 11 | - uses: actions/setup-node@v3 12 | with: 13 | node-version: '16.x' 14 | registry-url: 'https://registry.npmjs.org' 15 | # Defaults to the user or organization that owns the workflow file 16 | scope: '@sei-js' 17 | - run: yarn 18 | - run: yarn deploy 19 | env: 20 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 21 | -------------------------------------------------------------------------------- /src/hooks/useWallet/types.ts: -------------------------------------------------------------------------------- 1 | import {WalletAccount, WalletWindowKey} from "@sei-js/core/wallet"; 2 | import { ChainConfiguration } from '../../types/config'; 3 | 4 | export type UseWalletOptions = { 5 | autoConnect?: boolean; 6 | chainConfiguration: ChainConfiguration; 7 | inputWallet: WalletWindowKey 8 | } 9 | 10 | export type UseWallet = { 11 | connectedWallet?: WalletWindowKey; 12 | connect: () => Promise; 13 | disconnect: () => void; 14 | chainId: string; 15 | restUrl: string; 16 | rpcUrl: string; 17 | supportedWallets: WalletWindowKey[]; 18 | installedWallets: WalletWindowKey[]; 19 | error?: string; 20 | offlineSigner?: any; 21 | accounts?: WalletAccount[]; 22 | }; 23 | -------------------------------------------------------------------------------- /src/hooks/useQueryClient/UseQueryClient.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from 'react'; 2 | import { getQueryClient } from '@sei-js/core/queryClient'; 3 | 4 | const useQueryClient = (restUrl: string) => { 5 | const [isLoading, setIsLoading] = useState(true); 6 | const [queryClient, setQueryClient] = useState>>(); 7 | 8 | useEffect(() => { 9 | const getClient = async () => { 10 | return await getQueryClient(restUrl); 11 | }; 12 | 13 | setIsLoading(true); 14 | 15 | getClient().then((client) => { 16 | setQueryClient(client); 17 | setIsLoading(false); 18 | }); 19 | }, [restUrl]); 20 | 21 | return { queryClient, isLoading }; 22 | }; 23 | 24 | export default useQueryClient; 25 | -------------------------------------------------------------------------------- /src/hooks/useSigningClient/UseSigningClient.tsx: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from 'react'; 2 | import { getSigningClient } from '@sei-js/core/signingClient'; 3 | 4 | const useSigningClient = (rpcAddress: string, offlineSigner?: any) => { 5 | const [isLoading, setIsLoading] = useState(true); 6 | const [signingClient, setSigningClient] = useState(); 7 | 8 | useEffect(() => { 9 | const getClient = async () => { 10 | return await getSigningClient(rpcAddress, offlineSigner); 11 | }; 12 | 13 | if(!offlineSigner) return; 14 | setIsLoading(true); 15 | 16 | getClient().then((client) => { 17 | setSigningClient(client); 18 | setIsLoading(false); 19 | }); 20 | }, [rpcAddress, offlineSigner]); 21 | 22 | return { signingClient, isLoading }; 23 | }; 24 | 25 | export default useSigningClient; 26 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@sei-js/react", 3 | "version": "1.0.52", 4 | "description": "A set of React helpers for @sei-js/core", 5 | "main": "./index.js", 6 | "types": "./index.d.ts", 7 | "scripts": { 8 | "deploy": "cd lib && npm publish --access public", 9 | "predeploy": "yarn build && cp package.json lib && cp README.md lib", 10 | "build": "yarn clean && tsc", 11 | "clean": "rimraf lib", 12 | "release": "standard-version", 13 | "postrelease": "git push --follow-tags origin main" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/sei-protocol/js-react.git" 18 | }, 19 | "keywords": [ 20 | "sei", 21 | "react" 22 | ], 23 | "author": "Carson Aberle", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/sei-protocol/js-react/issues" 27 | }, 28 | "homepage": "https://github.com/sei-protocol/js-react#readme", 29 | "devDependencies": { 30 | "@types/react": "^17.0.1", 31 | "prettier": "^2.7.1", 32 | "react": "^17.0.1", 33 | "rimraf": "^3.0.2", 34 | "standard-version": "^9.5.0", 35 | "typescript": "^4.8.3" 36 | }, 37 | "dependencies": { 38 | "@sei-js/core": "^1.0.40" 39 | }, 40 | "browserslist": [ 41 | ">0.2%", 42 | "not dead", 43 | "not op_mini all" 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | ### [1.0.52](https://github.com/sei-protocol/js-react/compare/v1.0.6...v1.0.52) (2022-12-15) 6 | 7 | ### [1.0.6](https://github.com/sei-protocol/js-react/compare/v1.0.49...v1.0.6) (2022-12-15) 8 | 9 | ### [1.0.50](https://github.com/sei-protocol/js-react/compare/v1.0.49...v1.0.50) (2022-12-15) 10 | 11 | ### [1.0.49](https://github.com/sei-protocol/js-react/compare/v1.0.48...v1.0.49) (2022-12-14) 12 | 13 | ### [1.0.48](https://github.com/sei-protocol/js-react/compare/v1.0.47...v1.0.48) (2022-11-29) 14 | 15 | ### [1.0.47](https://github.com/sei-protocol/js-react/compare/v1.0.46...v1.0.47) (2022-11-21) 16 | 17 | ### [1.0.46](https://github.com/sei-protocol/js-react/compare/v1.0.45...v1.0.46) (2022-11-17) 18 | 19 | ### [1.0.45](https://github.com/sei-protocol/js-react/compare/v1.0.44...v1.0.45) (2022-11-17) 20 | 21 | ### [1.0.44](https://github.com/sei-protocol/js-react/compare/v1.0.43...v1.0.44) (2022-11-11) 22 | 23 | ### [1.0.43](https://github.com/sei-protocol/js-react/compare/v1.0.42...v1.0.43) (2022-11-11) 24 | 25 | ### [1.0.42](https://github.com/sei-protocol/js-react/compare/v1.0.41...v1.0.42) (2022-11-08) 26 | 27 | ### [1.0.41](https://github.com/sei-protocol/js-react/compare/v1.0.39...v1.0.41) (2022-11-08) 28 | 29 | ### [1.0.40](https://github.com/sei-protocol/js-react/compare/v1.0.39...v1.0.40) (2022-11-08) 30 | 31 | ### [1.0.39](https://github.com/sei-protocol/js-react/compare/v1.0.38...v1.0.39) (2022-11-04) 32 | 33 | ### [1.0.38](https://github.com/sei-protocol/js-react/compare/v1.0.37...v1.0.38) (2022-10-27) 34 | 35 | ### [1.0.37](https://github.com/sei-protocol/js-react/compare/v1.0.36...v1.0.37) (2022-10-26) 36 | 37 | ### [1.0.36](https://github.com/sei-protocol/js-react/compare/v1.0.35...v1.0.36) (2022-10-26) 38 | 39 | ### [1.0.35](https://github.com/sei-protocol/js-react/compare/v1.0.34...v1.0.35) (2022-10-25) 40 | 41 | ### [1.0.34](https://github.com/sei-protocol/js-react/compare/v1.0.33...v1.0.34) (2022-10-20) 42 | 43 | ### [1.0.33](https://github.com/sei-protocol/js-react/compare/v1.0.32...v1.0.33) (2022-10-20) 44 | 45 | ### [1.0.32](https://github.com/sei-protocol/js-react/compare/v1.0.31...v1.0.32) (2022-10-19) 46 | 47 | ### [1.0.31](https://github.com/sei-protocol/js-react/compare/v1.0.30...v1.0.31) (2022-10-19) 48 | 49 | ### [1.0.30](https://github.com/sei-protocol/js-react/compare/v1.0.29...v1.0.30) (2022-10-19) 50 | 51 | ### [1.0.29](https://github.com/sei-protocol/js-react/compare/v1.0.28...v1.0.29) (2022-10-19) 52 | 53 | ### [1.0.28](https://github.com/sei-protocol/js-react/compare/v1.0.27...v1.0.28) (2022-10-19) 54 | 55 | ### 1.0.27 (2022-10-19) 56 | -------------------------------------------------------------------------------- /src/hooks/useWallet/useWallet.tsx: -------------------------------------------------------------------------------- 1 | import React, { useCallback, useEffect, useMemo, useState } from 'react'; 2 | import { UseWallet, UseWalletOptions } from './types'; 3 | import { SUPPORTED_WALLETS, WalletAccount, connect as connectWallet, WalletWindowKey } from '@sei-js/core/wallet'; 4 | 5 | const useWallet: (window: any, walletOptions: UseWalletOptions) => UseWallet = (window, walletOptions) => { 6 | const { inputWallet, autoConnect } = walletOptions; 7 | 8 | const chainId = useMemo(() => { 9 | const { chainConfiguration } = walletOptions; 10 | if (chainConfiguration === 'testnet') return 'atlantic-1'; 11 | if (chainConfiguration === 'devnet') return 'sei-devnet-1'; 12 | return chainConfiguration.chainId; 13 | }, [walletOptions.chainConfiguration]); 14 | 15 | const restUrl = useMemo(() => { 16 | const { chainConfiguration } = walletOptions; 17 | if (chainConfiguration === 'testnet') return 'https://sei-chain-incentivized.com/sei-chain-app'; 18 | if (chainConfiguration === 'devnet') return 'https://sei-chain-devnet.com/sei-chain-app'; 19 | return chainConfiguration.restUrl; 20 | }, [walletOptions.chainConfiguration]); 21 | 22 | const rpcUrl = useMemo(() => { 23 | const { chainConfiguration } = walletOptions; 24 | if (chainConfiguration === 'testnet') return 'https://sei-chain-incentivized.com/sei-chain-tm/'; 25 | if (chainConfiguration === 'devnet') return 'https://sei-chain-devnet.com/sei-chain-tm/'; 26 | return chainConfiguration.restUrl; 27 | }, [walletOptions.chainConfiguration]); 28 | 29 | const [offlineSigner, setOfflineSigner] = useState(); 30 | const [accounts, setAccounts] = useState([]); 31 | const [connectedWallet, setConnectedWallet] = useState(); 32 | 33 | const installedWallets = useMemo( 34 | () => (window ? SUPPORTED_WALLETS.filter((wallet) => window?.[wallet.windowKey]).map((wallet) => wallet.windowKey) : []), 35 | [window] 36 | ); 37 | 38 | const connect = useCallback(async () => { 39 | try { 40 | const initConnection = async () => { 41 | const ConnectWallet = await connectWallet(inputWallet, chainId, restUrl, rpcUrl); 42 | if (!ConnectWallet) return; 43 | const { offlineSigner, accounts } = ConnectWallet; 44 | setOfflineSigner(offlineSigner); 45 | setAccounts(accounts); 46 | setConnectedWallet(inputWallet); 47 | }; 48 | 49 | if (inputWallet) initConnection().then(); 50 | } catch { 51 | console.log('error!'); 52 | } 53 | }, [inputWallet]); 54 | 55 | const disconnect = useCallback(() => { 56 | setConnectedWallet(undefined); 57 | setAccounts([]); 58 | setOfflineSigner(undefined); 59 | }, []); 60 | 61 | useEffect(() => { 62 | if (autoConnect && inputWallet) { 63 | connect().then(() => setConnectedWallet(inputWallet)); 64 | } 65 | }, [autoConnect, inputWallet]); 66 | 67 | if (!inputWallet) 68 | return { 69 | connect, 70 | disconnect, 71 | error: 'No wallet defined.', 72 | supportedWallets: SUPPORTED_WALLETS.map((wallet) => wallet.windowKey), 73 | installedWallets, 74 | chainId, 75 | restUrl, 76 | rpcUrl 77 | }; 78 | 79 | return { 80 | connect, 81 | disconnect, 82 | supportedWallets: SUPPORTED_WALLETS.map((wallet) => wallet.windowKey), 83 | installedWallets, 84 | offlineSigner, 85 | accounts, 86 | connectedWallet, 87 | chainId, 88 | restUrl, 89 | rpcUrl 90 | }; 91 | }; 92 | 93 | export default useWallet; 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WARNING: This package has been moved 2 | 3 | Please visit the [@sei-js monorepo](https://github.com/sei-protocol/sei-js) for the latest changes. 4 | 5 | # @sei-js/react 6 | 7 | A set of React hooks for [@sei-js/core](https://www.npmjs.com/package/@sei-js/core) written in Typescript. 8 | 9 | ## Tutorial 10 | 11 | For an in depth tutorial please see [our documentation.](https://app.gitbook.com/o/YiBih4jOIh8lif9Z44jw/s/vVOoEaSQGRIbgTgSvoEo/front-end-development/javascript-tutorial) 12 | 13 | ## Installation 14 | 15 | ```shell 16 | yarn add @sei-js/react 17 | ``` 18 | 19 | # Hooks 20 | 21 | | Hook | Params | 22 | | ------------------------------------- | ---------------------------------------- | 23 | | [useWallet](#usewallet) | (window: any, config: object) | 24 | | [useQueryClient](#useQueryClient) | (rpcAddress: string) | 25 | | [useSigningClient](#useSigningClient) | (rpcAddress: string, offlineSigner: any) | 26 | 27 | ## useWallet 28 | 29 | A hook to connect one of our supported wallets to your application. 30 | 31 | ### Input Props 32 | 33 | | Hook | Params | 34 | | ------------- | --------------------------------------------------------------------------------------------------- | 35 | | window | The client side `window` object which has access to wallet providers injected code. | 36 | | walletOptions | [UseWalletOptions](https://github.com/sei-protocol/js-react/blob/main/src/hooks/useWallet/types.ts) | 37 | 38 | ```javascript 39 | import { useWallet } from '@sei-js/react'; 40 | 41 | const { offlineSigner } = useWallet(window, { inputWallet: 'leap', autoconnect: true, chainConfiguration: 'testnet' }); 42 | ``` 43 | 44 | ### Return Values 45 | 46 | | Property | Type | Description | 47 | | ---------------- | ------------------ | ------------------------------------------------------- | 48 | | connectedWallet | string? | The currently connected wallet | 49 | | connect | () => Promise | Async function to connect to input wallet | 50 | | disconnect | () => void | Function to disconnect from input wallet | 51 | | supportedWallets | string[] | List of supported wallets | 52 | | installedWallets | string[] | List of wallets installed | 53 | | error | string? | Error message | 54 | | chainId | string | Sei chain id | 55 | | restUrl | string | The rest url associated with the connected wallet | 56 | | rpcUrl | string | The rpc url associated with the connected wallet | 57 | | offlineSigner | object? | The offline signer associated with the connected wallet | 58 | | accounts | object[]? | The accounts associated with the connected wallet | 59 | 60 | ## useQueryClient 61 | 62 | ```javascript 63 | import { useQueryClient } from '@sei-js/react'; 64 | 65 | const { queryClient, isLoading } = useQueryCleint('rest_url'); 66 | ``` 67 | 68 | | Property | Type | Description | 69 | | ----------- | ---------------------- | ------------------------------------------------------- | 70 | | queryClient | StargateSigningClient? | A stargate signing client. | 71 | | isLoading | boolean | Boolean value for when the initial loading is happening | 72 | 73 | ## useSigningClient 74 | 75 | ```javascript 76 | import { useWallet, useSigningClient } from '@sei-js/react'; 77 | 78 | const { offlineSigner } = useWallet(window, { inputWallet: 'keplr', autoconnect: true, chainConfiguration: 'testnet' }); 79 | const { signingClient, isLoading } = useSigningClient('rpc_address', offlineSigner); 80 | ``` 81 | 82 | | Property | Type | Description | 83 | | ------------- | ---------------------- | ------------------------------------------------------- | 84 | | signingClient | StargateSigningClient? | A stargate signing client. | 85 | | isLoading | boolean | Boolean value for when the initial loading is happening | 86 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.18.6" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 8 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 9 | dependencies: 10 | "@babel/highlight" "^7.18.6" 11 | 12 | "@babel/helper-validator-identifier@^7.18.6": 13 | version "7.19.1" 14 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 15 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 16 | 17 | "@babel/highlight@^7.18.6": 18 | version "7.18.6" 19 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 20 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.18.6" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@babel/runtime@^7.18.9", "@babel/runtime@^7.19.0": 27 | version "7.19.4" 28 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" 29 | integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== 30 | dependencies: 31 | regenerator-runtime "^0.13.4" 32 | 33 | "@confio/ics23@^0.6.8": 34 | version "0.6.8" 35 | resolved "https://registry.npmjs.org/@confio/ics23/-/ics23-0.6.8.tgz#2a6b4f1f2b7b20a35d9a0745bb5a446e72930b3d" 36 | integrity sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w== 37 | dependencies: 38 | "@noble/hashes" "^1.0.0" 39 | protobufjs "^6.8.8" 40 | 41 | "@cosmjs/amino@0.28.13": 42 | version "0.28.13" 43 | resolved "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.28.13.tgz#b51417a23c1ff8ef8b85a6862eba8492c6c44f38" 44 | integrity sha512-IHnH2zGwaY69qT4mVAavr/pfzx6YE+ud1NHJbvVePlbGiz68CXTi5LHR+K0lrKB5mQ7E+ZErWz2mw5U/x+V1wQ== 45 | dependencies: 46 | "@cosmjs/crypto" "0.28.13" 47 | "@cosmjs/encoding" "0.28.13" 48 | "@cosmjs/math" "0.28.13" 49 | "@cosmjs/utils" "0.28.13" 50 | 51 | "@cosmjs/amino@0.29.0", "@cosmjs/amino@^0.29.0": 52 | version "0.29.0" 53 | resolved "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.29.0.tgz#35873a580a6102e48415ed2b5b97477f146fb50d" 54 | integrity sha512-/ZUVx6nRN5YE36H3SDq9+i8g2nZ8DJQnN9fVRC8rSHQKauNkoEuK4NxTNcQ2o2EBLUT0kyYAFY2550HVsPMrgw== 55 | dependencies: 56 | "@cosmjs/crypto" "^0.29.0" 57 | "@cosmjs/encoding" "^0.29.0" 58 | "@cosmjs/math" "^0.29.0" 59 | "@cosmjs/utils" "^0.29.0" 60 | 61 | "@cosmjs/crypto@0.28.13": 62 | version "0.28.13" 63 | resolved "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.28.13.tgz#541b6a36f616b2da5a568ead46d4e83841ceb412" 64 | integrity sha512-ynKfM0q/tMBQMHJby6ad8lR3gkgBKaelQhIsCZTjClsnuC7oYT9y3ThSZCUWr7Pa9h0J8ahU2YV2oFWFVWJQzQ== 65 | dependencies: 66 | "@cosmjs/encoding" "0.28.13" 67 | "@cosmjs/math" "0.28.13" 68 | "@cosmjs/utils" "0.28.13" 69 | "@noble/hashes" "^1" 70 | bn.js "^5.2.0" 71 | elliptic "^6.5.3" 72 | libsodium-wrappers "^0.7.6" 73 | 74 | "@cosmjs/crypto@^0.29.0": 75 | version "0.29.0" 76 | resolved "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.29.0.tgz#c914424a8b538f6624e505bc2015a71e3977c2fb" 77 | integrity sha512-MPJoebRGh7AcZgbfR25ci7iV+XzJiKwVq4wL8n6M5P2QdrIv7DqqniyFXcBbn9dQjMLMHnOSgT9LRv+VXzUVCA== 78 | dependencies: 79 | "@cosmjs/encoding" "^0.29.0" 80 | "@cosmjs/math" "^0.29.0" 81 | "@cosmjs/utils" "^0.29.0" 82 | "@noble/hashes" "^1" 83 | bn.js "^5.2.0" 84 | elliptic "^6.5.3" 85 | libsodium-wrappers "^0.7.6" 86 | 87 | "@cosmjs/encoding@0.28.13": 88 | version "0.28.13" 89 | resolved "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.28.13.tgz#7994e8e2c435beaf0690296ffb0f7f3eaec8150b" 90 | integrity sha512-jtXbAYtV77rLHxoIrjGFsvgGjeTKttuHRv6cvuy3toCZzY7JzTclKH5O2g36IIE4lXwD9xwuhGJ2aa6A3dhNkA== 91 | dependencies: 92 | base64-js "^1.3.0" 93 | bech32 "^1.1.4" 94 | readonly-date "^1.0.0" 95 | 96 | "@cosmjs/encoding@^0.29.0": 97 | version "0.29.0" 98 | resolved "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.29.0.tgz#75b1b41a2f31f71fcb0982cd1b210d6410739fd0" 99 | integrity sha512-6HDBtid/YLbyXapY6PdMMIigAtGKyD1w0dUCLU1dOIkPf1q3y43kqoA7WnLkRw0g0/lZY1VGM2fX+2RWU0wxYg== 100 | dependencies: 101 | base64-js "^1.3.0" 102 | bech32 "^1.1.4" 103 | readonly-date "^1.0.0" 104 | 105 | "@cosmjs/json-rpc@0.28.13": 106 | version "0.28.13" 107 | resolved "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.28.13.tgz#ff3f0c4a2f363b1a2c6779f8624a897e217fe297" 108 | integrity sha512-fInSvg7x9P6p+GWqet+TMhrMTM3OWWdLJOGS5w2ryubMjgpR1rLiAx77MdTNkArW+/6sUwku0sN4veM4ENQu6A== 109 | dependencies: 110 | "@cosmjs/stream" "0.28.13" 111 | xstream "^11.14.0" 112 | 113 | "@cosmjs/json-rpc@^0.29.0": 114 | version "0.29.0" 115 | resolved "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.29.0.tgz#481f282bcb3457c71f393342691e957a4fa56535" 116 | integrity sha512-noCt91X+dSYjW1BYbp5jFaYaA/PWIQFXOgl4ZDW0ecGOAj8xh6/D/Vd8bDO97CQgJ1KVw0pyAqVhmrBOBUo1sA== 117 | dependencies: 118 | "@cosmjs/stream" "^0.29.0" 119 | xstream "^11.14.0" 120 | 121 | "@cosmjs/math@0.28.13": 122 | version "0.28.13" 123 | resolved "https://registry.npmjs.org/@cosmjs/math/-/math-0.28.13.tgz#50c05bc67007a04216f7f5e0c93f57270f8cc077" 124 | integrity sha512-PDpL8W/kbyeWi0mQ2OruyqE8ZUAdxPs1xCbDX3WXJwy2oU+X2UTbkuweJHVpS9CIqmZulBoWQAmlf6t6zr1N/g== 125 | dependencies: 126 | bn.js "^5.2.0" 127 | 128 | "@cosmjs/math@^0.29.0": 129 | version "0.29.0" 130 | resolved "https://registry.npmjs.org/@cosmjs/math/-/math-0.29.0.tgz#2c34f96d94055fe82ca310bec7b2d8a9f1c507cb" 131 | integrity sha512-ufRRmyDQtJUrH8r1V4N7Q6rTOk9ZX7XIXjJto7cfXP8kcxm7IJXKYk+r0EfDnNHFkxTidYvW/1YXeeNoy8xZYw== 132 | dependencies: 133 | bn.js "^5.2.0" 134 | 135 | "@cosmjs/proto-signing@0.28.13": 136 | version "0.28.13" 137 | resolved "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.28.13.tgz#95ac12f0da0f0814f348f5ae996c3e96d015df61" 138 | integrity sha512-nSl/2ZLsUJYz3Ad0RY3ihZUgRHIow2OnYqKsESMu+3RA/jTi9bDYhiBu8mNMHI0xrEJry918B2CyI56pOUHdPQ== 139 | dependencies: 140 | "@cosmjs/amino" "0.28.13" 141 | "@cosmjs/crypto" "0.28.13" 142 | "@cosmjs/encoding" "0.28.13" 143 | "@cosmjs/math" "0.28.13" 144 | "@cosmjs/utils" "0.28.13" 145 | cosmjs-types "^0.4.0" 146 | long "^4.0.0" 147 | 148 | "@cosmjs/proto-signing@0.29.0", "@cosmjs/proto-signing@^0.29.0": 149 | version "0.29.0" 150 | resolved "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.29.0.tgz#4d9c10fc3a5c64b454bd2d9b407861fcffdfbbe0" 151 | integrity sha512-zAdgDz5vRGAfJ5yyKYuTL7qg5UNUT7v4iV1/ZP8ZQn2fLh9QVxViAIovF4r/Y3EEI4JS5uYj/f8UeHMHQSu8hw== 152 | dependencies: 153 | "@cosmjs/amino" "^0.29.0" 154 | "@cosmjs/crypto" "^0.29.0" 155 | "@cosmjs/encoding" "^0.29.0" 156 | "@cosmjs/math" "^0.29.0" 157 | "@cosmjs/utils" "^0.29.0" 158 | cosmjs-types "^0.5.0" 159 | long "^4.0.0" 160 | 161 | "@cosmjs/socket@0.28.13": 162 | version "0.28.13" 163 | resolved "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.28.13.tgz#d8443ad6e91d080fc6b80a7e9cf297a56b1f6833" 164 | integrity sha512-lavwGxQ5VdeltyhpFtwCRVfxeWjH5D5mmN7jgx9nuCf3XSFbTcOYxrk2pQ4usenu1Q1KZdL4Yl5RCNrJuHD9Ug== 165 | dependencies: 166 | "@cosmjs/stream" "0.28.13" 167 | isomorphic-ws "^4.0.1" 168 | ws "^7" 169 | xstream "^11.14.0" 170 | 171 | "@cosmjs/socket@^0.29.0": 172 | version "0.29.0" 173 | resolved "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.29.0.tgz#6f8f56799e69ead02f9ffe8925c782804635ac89" 174 | integrity sha512-y7cOBp6YJ2Sn/DZne1eiJ6PVkgZlAi48d0Bz6hVuZ6CliutG0BzM/F3bSLxdw8m2fXNU+lYsi4uLPd0epf5Hig== 175 | dependencies: 176 | "@cosmjs/stream" "^0.29.0" 177 | isomorphic-ws "^4.0.1" 178 | ws "^7" 179 | xstream "^11.14.0" 180 | 181 | "@cosmjs/stargate@0.28.13": 182 | version "0.28.13" 183 | resolved "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.28.13.tgz#a73d837a46ee8944e6eafe162f2ff6943c14350e" 184 | integrity sha512-dVBMazDz8/eActHsRcZjDHHptOBMqvibj5CFgEtZBp22gP6ASzoAUXTlkSVk5FBf4sfuUHoff6st134/+PGMAg== 185 | dependencies: 186 | "@confio/ics23" "^0.6.8" 187 | "@cosmjs/amino" "0.28.13" 188 | "@cosmjs/encoding" "0.28.13" 189 | "@cosmjs/math" "0.28.13" 190 | "@cosmjs/proto-signing" "0.28.13" 191 | "@cosmjs/stream" "0.28.13" 192 | "@cosmjs/tendermint-rpc" "0.28.13" 193 | "@cosmjs/utils" "0.28.13" 194 | cosmjs-types "^0.4.0" 195 | long "^4.0.0" 196 | protobufjs "~6.11.3" 197 | xstream "^11.14.0" 198 | 199 | "@cosmjs/stargate@0.29.0", "@cosmjs/stargate@^0.29.0": 200 | version "0.29.0" 201 | resolved "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.29.0.tgz#55263ed9d414f2c3073a451527576e4c3d6f04a6" 202 | integrity sha512-BsV3iA3vMclMm/B1LYO0djBYCALr/UIvL6u9HGvM7QvpdtpQiAvskuS4PieVO/gtF9iCCBJLPqa0scwFIgvDyg== 203 | dependencies: 204 | "@confio/ics23" "^0.6.8" 205 | "@cosmjs/amino" "^0.29.0" 206 | "@cosmjs/encoding" "^0.29.0" 207 | "@cosmjs/math" "^0.29.0" 208 | "@cosmjs/proto-signing" "^0.29.0" 209 | "@cosmjs/stream" "^0.29.0" 210 | "@cosmjs/tendermint-rpc" "^0.29.0" 211 | "@cosmjs/utils" "^0.29.0" 212 | cosmjs-types "^0.5.0" 213 | long "^4.0.0" 214 | protobufjs "~6.11.3" 215 | xstream "^11.14.0" 216 | 217 | "@cosmjs/stream@0.28.13": 218 | version "0.28.13" 219 | resolved "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.28.13.tgz#1e79d1116fda1e63e5ecddbd9d803d403942b1fa" 220 | integrity sha512-AnjtfwT8NwPPkd3lhZhjOlOzT0Kn9bgEu2IPOZjQ1nmG2bplsr6TJmnwn0dJxHT7UGtex17h6whKB5N4wU37Wg== 221 | dependencies: 222 | xstream "^11.14.0" 223 | 224 | "@cosmjs/stream@^0.29.0": 225 | version "0.29.0" 226 | resolved "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.29.0.tgz#df2d7ea23293170bc192e91c0fa3e9f8d993b7cc" 227 | integrity sha512-KAJ9sNoXhF19wtkoJf3O2y4YXfklDZgmXhDotgAejLrw2ixoVfTodMHvnl6tpw3ZnmXKibTfUaNXWZD++sG6uQ== 228 | dependencies: 229 | xstream "^11.14.0" 230 | 231 | "@cosmjs/tendermint-rpc@0.28.13": 232 | version "0.28.13" 233 | resolved "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.28.13.tgz#0bf587ae66fa3f88319edbd258492d28e73f9f29" 234 | integrity sha512-GB+ZmfuJIGQm0hsRtLYjeR3lOxF7Z6XyCBR0cX5AAYOZzSEBJjevPgUHD6tLn8zIhvzxaW3/VKnMB+WmlxdH4w== 235 | dependencies: 236 | "@cosmjs/crypto" "0.28.13" 237 | "@cosmjs/encoding" "0.28.13" 238 | "@cosmjs/json-rpc" "0.28.13" 239 | "@cosmjs/math" "0.28.13" 240 | "@cosmjs/socket" "0.28.13" 241 | "@cosmjs/stream" "0.28.13" 242 | "@cosmjs/utils" "0.28.13" 243 | axios "^0.21.2" 244 | readonly-date "^1.0.0" 245 | xstream "^11.14.0" 246 | 247 | "@cosmjs/tendermint-rpc@^0.29.0": 248 | version "0.29.0" 249 | resolved "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.29.0.tgz#db71e743d2ee8dde706c09bc92ac47cc6197f672" 250 | integrity sha512-G+42oGh+tw8/KV0gLAGzNCTe/6mkf7VUE5noSTbsxbeliFR7Lt4i6H2aqvWzmlZFeRxunR7AsQr4wakvlVNWyg== 251 | dependencies: 252 | "@cosmjs/crypto" "^0.29.0" 253 | "@cosmjs/encoding" "^0.29.0" 254 | "@cosmjs/json-rpc" "^0.29.0" 255 | "@cosmjs/math" "^0.29.0" 256 | "@cosmjs/socket" "^0.29.0" 257 | "@cosmjs/stream" "^0.29.0" 258 | "@cosmjs/utils" "^0.29.0" 259 | axios "^0.21.2" 260 | readonly-date "^1.0.0" 261 | xstream "^11.14.0" 262 | 263 | "@cosmjs/utils@0.28.13": 264 | version "0.28.13" 265 | resolved "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.28.13.tgz#2fd2844ec832d7833811e2ae1691305d09791a08" 266 | integrity sha512-dVeMBiyg+46x7XBZEfJK8yTihphbCFpjVYmLJVqmTsHfJwymQ65cpyW/C+V/LgWARGK8hWQ/aX9HM5Ao8QmMSg== 267 | 268 | "@cosmjs/utils@^0.29.0": 269 | version "0.29.0" 270 | resolved "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.29.0.tgz#0a61e6d608e9f6f89a278cc71f4e7cee01199657" 271 | integrity sha512-NiJk3ISX+FU1cQcTTgmJcY84A8mV/p8L5CRewp/2jc/lUmo8j9lMGbX17U7NxVQ9RX5RmrwgdjYnBASzhRCVmA== 272 | 273 | "@hutson/parse-repository-url@^3.0.0": 274 | version "3.0.2" 275 | resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" 276 | integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== 277 | 278 | "@noble/hashes@^1", "@noble/hashes@^1.0.0": 279 | version "1.1.3" 280 | resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.3.tgz#360afc77610e0a61f3417e497dcf36862e4f8111" 281 | integrity sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A== 282 | 283 | "@osmonauts/helpers@^0.6.0": 284 | version "0.6.0" 285 | resolved "https://registry.npmjs.org/@osmonauts/helpers/-/helpers-0.6.0.tgz#86324110ba1ec76637836ef6ec12ce263e1a7a97" 286 | integrity sha512-l62tWR/0W4R+5wRvMeRK0zlaJ8WZhULKsQAZ7kNzggL0pbndIAV+0BJ/jEBbNletoeGtuV8rpi6Wo+w+RmtZGw== 287 | dependencies: 288 | "@babel/runtime" "^7.18.9" 289 | "@cosmjs/amino" "0.28.13" 290 | "@cosmjs/crypto" "0.28.13" 291 | "@cosmjs/proto-signing" "0.28.13" 292 | "@cosmjs/stargate" "0.28.13" 293 | cosmjs-types "0.5.1" 294 | long "^5.2.0" 295 | protobufjs "^6.11.3" 296 | 297 | "@osmonauts/lcd@^0.8.0": 298 | version "0.8.0" 299 | resolved "https://registry.npmjs.org/@osmonauts/lcd/-/lcd-0.8.0.tgz#fcabba93edadd23f73b2046a5cad897b420a9c84" 300 | integrity sha512-k7m2gAVnXc0H4m/eTq4z/8A6hFrr3MPS9wnLV4Xu9/K/WYltCnp2PpiObZm+feZUPK/svES6hxIQeO1bODLx8g== 301 | dependencies: 302 | "@babel/runtime" "^7.19.0" 303 | axios "0.27.2" 304 | 305 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 306 | version "1.1.2" 307 | resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 308 | integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== 309 | 310 | "@protobufjs/base64@^1.1.2": 311 | version "1.1.2" 312 | resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 313 | integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== 314 | 315 | "@protobufjs/codegen@^2.0.4": 316 | version "2.0.4" 317 | resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 318 | integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== 319 | 320 | "@protobufjs/eventemitter@^1.1.0": 321 | version "1.1.0" 322 | resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 323 | integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== 324 | 325 | "@protobufjs/fetch@^1.1.0": 326 | version "1.1.0" 327 | resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 328 | integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== 329 | dependencies: 330 | "@protobufjs/aspromise" "^1.1.1" 331 | "@protobufjs/inquire" "^1.1.0" 332 | 333 | "@protobufjs/float@^1.0.2": 334 | version "1.0.2" 335 | resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 336 | integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== 337 | 338 | "@protobufjs/inquire@^1.1.0": 339 | version "1.1.0" 340 | resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 341 | integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== 342 | 343 | "@protobufjs/path@^1.1.2": 344 | version "1.1.2" 345 | resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 346 | integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== 347 | 348 | "@protobufjs/pool@^1.1.0": 349 | version "1.1.0" 350 | resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 351 | integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== 352 | 353 | "@protobufjs/utf8@^1.1.0": 354 | version "1.1.0" 355 | resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 356 | integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== 357 | 358 | "@sei-js/core@^1.0.40": 359 | version "1.0.40" 360 | resolved "https://registry.yarnpkg.com/@sei-js/core/-/core-1.0.40.tgz#429977d9f560091ed1c7bc52ea7fb800a0b40e7f" 361 | integrity sha512-8KWH+SM4r4T5SM4v4pDTpuiwk3NvKt/+FvOGfLA42ZMmCYsi5zM/LwJSz1eX1d9hCO0uuDKmR3Dru6g++GpPbQ== 362 | dependencies: 363 | "@cosmjs/stargate" "^0.29.0" 364 | "@sei-js/proto" "^0.0.1" 365 | 366 | "@sei-js/proto@^0.0.1": 367 | version "0.0.1" 368 | resolved "https://registry.npmjs.org/@sei-js/proto/-/proto-0.0.1.tgz#fcdae68868aa38aa5806a1dd136c7346e4d1da0a" 369 | integrity sha512-HvbIXYnjTc1Xzi3lsIND+tT8Mvh7kBtFR1eeOoxworuyTdmerukPJ4TH7Tc3qsAE5LRJ+DIPSkBMpU3bPV2xPA== 370 | dependencies: 371 | "@babel/runtime" "^7.18.9" 372 | "@cosmjs/amino" "0.29.0" 373 | "@cosmjs/proto-signing" "0.29.0" 374 | "@cosmjs/stargate" "0.29.0" 375 | "@cosmjs/tendermint-rpc" "^0.29.0" 376 | "@osmonauts/helpers" "^0.6.0" 377 | "@osmonauts/lcd" "^0.8.0" 378 | protobufjs "^6.11.2" 379 | 380 | "@types/long@^4.0.1": 381 | version "4.0.2" 382 | resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" 383 | integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== 384 | 385 | "@types/minimist@^1.2.0": 386 | version "1.2.2" 387 | resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" 388 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== 389 | 390 | "@types/node@>=13.7.0": 391 | version "18.8.2" 392 | resolved "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz#17d42c6322d917764dd3d2d3a10d7884925de067" 393 | integrity sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA== 394 | 395 | "@types/normalize-package-data@^2.4.0": 396 | version "2.4.1" 397 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 398 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 399 | 400 | "@types/prop-types@*": 401 | version "15.7.5" 402 | resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" 403 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 404 | 405 | "@types/react@^17.0.1": 406 | version "17.0.50" 407 | resolved "https://registry.npmjs.org/@types/react/-/react-17.0.50.tgz" 408 | integrity sha512-ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA== 409 | dependencies: 410 | "@types/prop-types" "*" 411 | "@types/scheduler" "*" 412 | csstype "^3.0.2" 413 | 414 | "@types/scheduler@*": 415 | version "0.16.2" 416 | resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" 417 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 418 | 419 | JSONStream@^1.0.4: 420 | version "1.3.5" 421 | resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 422 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 423 | dependencies: 424 | jsonparse "^1.2.0" 425 | through ">=2.2.7 <3" 426 | 427 | add-stream@^1.0.0: 428 | version "1.0.0" 429 | resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 430 | integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== 431 | 432 | ansi-regex@^5.0.1: 433 | version "5.0.1" 434 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 435 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 436 | 437 | ansi-styles@^3.2.1: 438 | version "3.2.1" 439 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 440 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 441 | dependencies: 442 | color-convert "^1.9.0" 443 | 444 | ansi-styles@^4.0.0: 445 | version "4.3.0" 446 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 447 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 448 | dependencies: 449 | color-convert "^2.0.1" 450 | 451 | array-ify@^1.0.0: 452 | version "1.0.0" 453 | resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 454 | integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== 455 | 456 | arrify@^1.0.1: 457 | version "1.0.1" 458 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 459 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== 460 | 461 | asynckit@^0.4.0: 462 | version "0.4.0" 463 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 464 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 465 | 466 | axios@0.27.2: 467 | version "0.27.2" 468 | resolved "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" 469 | integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== 470 | dependencies: 471 | follow-redirects "^1.14.9" 472 | form-data "^4.0.0" 473 | 474 | axios@^0.21.2: 475 | version "0.21.4" 476 | resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" 477 | integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== 478 | dependencies: 479 | follow-redirects "^1.14.0" 480 | 481 | balanced-match@^1.0.0: 482 | version "1.0.2" 483 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 484 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 485 | 486 | base64-js@^1.3.0: 487 | version "1.5.1" 488 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 489 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 490 | 491 | bech32@^1.1.4: 492 | version "1.1.4" 493 | resolved "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 494 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 495 | 496 | bn.js@^4.11.9: 497 | version "4.12.0" 498 | resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 499 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 500 | 501 | bn.js@^5.2.0: 502 | version "5.2.1" 503 | resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 504 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 505 | 506 | brace-expansion@^1.1.7: 507 | version "1.1.11" 508 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 509 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 510 | dependencies: 511 | balanced-match "^1.0.0" 512 | concat-map "0.0.1" 513 | 514 | brorand@^1.1.0: 515 | version "1.1.0" 516 | resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 517 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 518 | 519 | buffer-from@^1.0.0: 520 | version "1.1.2" 521 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 522 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 523 | 524 | camelcase-keys@^6.2.2: 525 | version "6.2.2" 526 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 527 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 528 | dependencies: 529 | camelcase "^5.3.1" 530 | map-obj "^4.0.0" 531 | quick-lru "^4.0.1" 532 | 533 | camelcase@^5.3.1: 534 | version "5.3.1" 535 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 536 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 537 | 538 | chalk@^2.0.0, chalk@^2.4.2: 539 | version "2.4.2" 540 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 541 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 542 | dependencies: 543 | ansi-styles "^3.2.1" 544 | escape-string-regexp "^1.0.5" 545 | supports-color "^5.3.0" 546 | 547 | cliui@^7.0.2: 548 | version "7.0.4" 549 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 550 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 551 | dependencies: 552 | string-width "^4.2.0" 553 | strip-ansi "^6.0.0" 554 | wrap-ansi "^7.0.0" 555 | 556 | color-convert@^1.9.0: 557 | version "1.9.3" 558 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 559 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 560 | dependencies: 561 | color-name "1.1.3" 562 | 563 | color-convert@^2.0.1: 564 | version "2.0.1" 565 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 566 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 567 | dependencies: 568 | color-name "~1.1.4" 569 | 570 | color-name@1.1.3: 571 | version "1.1.3" 572 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 573 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 574 | 575 | color-name@~1.1.4: 576 | version "1.1.4" 577 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 578 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 579 | 580 | combined-stream@^1.0.8: 581 | version "1.0.8" 582 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 583 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 584 | dependencies: 585 | delayed-stream "~1.0.0" 586 | 587 | compare-func@^2.0.0: 588 | version "2.0.0" 589 | resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" 590 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== 591 | dependencies: 592 | array-ify "^1.0.0" 593 | dot-prop "^5.1.0" 594 | 595 | concat-map@0.0.1: 596 | version "0.0.1" 597 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 598 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 599 | 600 | concat-stream@^2.0.0: 601 | version "2.0.0" 602 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" 603 | integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== 604 | dependencies: 605 | buffer-from "^1.0.0" 606 | inherits "^2.0.3" 607 | readable-stream "^3.0.2" 608 | typedarray "^0.0.6" 609 | 610 | conventional-changelog-angular@^5.0.12: 611 | version "5.0.13" 612 | resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" 613 | integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== 614 | dependencies: 615 | compare-func "^2.0.0" 616 | q "^1.5.1" 617 | 618 | conventional-changelog-atom@^2.0.8: 619 | version "2.0.8" 620 | resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" 621 | integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== 622 | dependencies: 623 | q "^1.5.1" 624 | 625 | conventional-changelog-codemirror@^2.0.8: 626 | version "2.0.8" 627 | resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" 628 | integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== 629 | dependencies: 630 | q "^1.5.1" 631 | 632 | conventional-changelog-config-spec@2.1.0: 633 | version "2.1.0" 634 | resolved "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz#874a635287ef8b581fd8558532bf655d4fb59f2d" 635 | integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ== 636 | 637 | conventional-changelog-conventionalcommits@4.6.3, conventional-changelog-conventionalcommits@^4.5.0: 638 | version "4.6.3" 639 | resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz#0765490f56424b46f6cb4db9135902d6e5a36dc2" 640 | integrity sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g== 641 | dependencies: 642 | compare-func "^2.0.0" 643 | lodash "^4.17.15" 644 | q "^1.5.1" 645 | 646 | conventional-changelog-core@^4.2.1: 647 | version "4.2.4" 648 | resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" 649 | integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== 650 | dependencies: 651 | add-stream "^1.0.0" 652 | conventional-changelog-writer "^5.0.0" 653 | conventional-commits-parser "^3.2.0" 654 | dateformat "^3.0.0" 655 | get-pkg-repo "^4.0.0" 656 | git-raw-commits "^2.0.8" 657 | git-remote-origin-url "^2.0.0" 658 | git-semver-tags "^4.1.1" 659 | lodash "^4.17.15" 660 | normalize-package-data "^3.0.0" 661 | q "^1.5.1" 662 | read-pkg "^3.0.0" 663 | read-pkg-up "^3.0.0" 664 | through2 "^4.0.0" 665 | 666 | conventional-changelog-ember@^2.0.9: 667 | version "2.0.9" 668 | resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" 669 | integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== 670 | dependencies: 671 | q "^1.5.1" 672 | 673 | conventional-changelog-eslint@^3.0.9: 674 | version "3.0.9" 675 | resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" 676 | integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== 677 | dependencies: 678 | q "^1.5.1" 679 | 680 | conventional-changelog-express@^2.0.6: 681 | version "2.0.6" 682 | resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" 683 | integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== 684 | dependencies: 685 | q "^1.5.1" 686 | 687 | conventional-changelog-jquery@^3.0.11: 688 | version "3.0.11" 689 | resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" 690 | integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== 691 | dependencies: 692 | q "^1.5.1" 693 | 694 | conventional-changelog-jshint@^2.0.9: 695 | version "2.0.9" 696 | resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" 697 | integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== 698 | dependencies: 699 | compare-func "^2.0.0" 700 | q "^1.5.1" 701 | 702 | conventional-changelog-preset-loader@^2.3.4: 703 | version "2.3.4" 704 | resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" 705 | integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== 706 | 707 | conventional-changelog-writer@^5.0.0: 708 | version "5.0.1" 709 | resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" 710 | integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== 711 | dependencies: 712 | conventional-commits-filter "^2.0.7" 713 | dateformat "^3.0.0" 714 | handlebars "^4.7.7" 715 | json-stringify-safe "^5.0.1" 716 | lodash "^4.17.15" 717 | meow "^8.0.0" 718 | semver "^6.0.0" 719 | split "^1.0.0" 720 | through2 "^4.0.0" 721 | 722 | conventional-changelog@3.1.25: 723 | version "3.1.25" 724 | resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz#3e227a37d15684f5aa1fb52222a6e9e2536ccaff" 725 | integrity sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ== 726 | dependencies: 727 | conventional-changelog-angular "^5.0.12" 728 | conventional-changelog-atom "^2.0.8" 729 | conventional-changelog-codemirror "^2.0.8" 730 | conventional-changelog-conventionalcommits "^4.5.0" 731 | conventional-changelog-core "^4.2.1" 732 | conventional-changelog-ember "^2.0.9" 733 | conventional-changelog-eslint "^3.0.9" 734 | conventional-changelog-express "^2.0.6" 735 | conventional-changelog-jquery "^3.0.11" 736 | conventional-changelog-jshint "^2.0.9" 737 | conventional-changelog-preset-loader "^2.3.4" 738 | 739 | conventional-commits-filter@^2.0.7: 740 | version "2.0.7" 741 | resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" 742 | integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== 743 | dependencies: 744 | lodash.ismatch "^4.4.0" 745 | modify-values "^1.0.0" 746 | 747 | conventional-commits-parser@^3.2.0: 748 | version "3.2.4" 749 | resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" 750 | integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== 751 | dependencies: 752 | JSONStream "^1.0.4" 753 | is-text-path "^1.0.1" 754 | lodash "^4.17.15" 755 | meow "^8.0.0" 756 | split2 "^3.0.0" 757 | through2 "^4.0.0" 758 | 759 | conventional-recommended-bump@6.1.0: 760 | version "6.1.0" 761 | resolved "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz#cfa623285d1de554012f2ffde70d9c8a22231f55" 762 | integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw== 763 | dependencies: 764 | concat-stream "^2.0.0" 765 | conventional-changelog-preset-loader "^2.3.4" 766 | conventional-commits-filter "^2.0.7" 767 | conventional-commits-parser "^3.2.0" 768 | git-raw-commits "^2.0.8" 769 | git-semver-tags "^4.1.1" 770 | meow "^8.0.0" 771 | q "^1.5.1" 772 | 773 | core-util-is@~1.0.0: 774 | version "1.0.3" 775 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 776 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 777 | 778 | cosmjs-types@0.5.1, cosmjs-types@^0.5.0: 779 | version "0.5.1" 780 | resolved "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.5.1.tgz#f9bc35e78c32b687fb6018dc573eb454b3ae2587" 781 | integrity sha512-NcC58xUIVLlKdIimWWQAmSlmCjiMrJnuHf4i3LiD8PCextfHR0fT3V5/WlXZZreyMgdmh6ML1zPUfGTbbo3Z5g== 782 | dependencies: 783 | long "^4.0.0" 784 | protobufjs "~6.11.2" 785 | 786 | cosmjs-types@^0.4.0: 787 | version "0.4.1" 788 | resolved "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.4.1.tgz#3b2a53ba60d33159dd075596ce8267cfa7027063" 789 | integrity sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog== 790 | dependencies: 791 | long "^4.0.0" 792 | protobufjs "~6.11.2" 793 | 794 | csstype@^3.0.2: 795 | version "3.1.1" 796 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" 797 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 798 | 799 | dargs@^7.0.0: 800 | version "7.0.0" 801 | resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" 802 | integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== 803 | 804 | dateformat@^3.0.0: 805 | version "3.0.3" 806 | resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 807 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== 808 | 809 | decamelize-keys@^1.1.0: 810 | version "1.1.0" 811 | resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 812 | integrity sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg== 813 | dependencies: 814 | decamelize "^1.1.0" 815 | map-obj "^1.0.0" 816 | 817 | decamelize@^1.1.0: 818 | version "1.2.0" 819 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 820 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 821 | 822 | define-properties@^1.1.3: 823 | version "1.1.4" 824 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 825 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 826 | dependencies: 827 | has-property-descriptors "^1.0.0" 828 | object-keys "^1.1.1" 829 | 830 | delayed-stream@~1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 833 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 834 | 835 | detect-indent@^6.0.0: 836 | version "6.1.0" 837 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" 838 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== 839 | 840 | detect-newline@^3.1.0: 841 | version "3.1.0" 842 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 843 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 844 | 845 | dot-prop@^5.1.0: 846 | version "5.3.0" 847 | resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 848 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 849 | dependencies: 850 | is-obj "^2.0.0" 851 | 852 | dotgitignore@^2.1.0: 853 | version "2.1.0" 854 | resolved "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz#a4b15a4e4ef3cf383598aaf1dfa4a04bcc089b7b" 855 | integrity sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA== 856 | dependencies: 857 | find-up "^3.0.0" 858 | minimatch "^3.0.4" 859 | 860 | elliptic@^6.5.3: 861 | version "6.5.4" 862 | resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 863 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 864 | dependencies: 865 | bn.js "^4.11.9" 866 | brorand "^1.1.0" 867 | hash.js "^1.0.0" 868 | hmac-drbg "^1.0.1" 869 | inherits "^2.0.4" 870 | minimalistic-assert "^1.0.1" 871 | minimalistic-crypto-utils "^1.0.1" 872 | 873 | emoji-regex@^8.0.0: 874 | version "8.0.0" 875 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 876 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 877 | 878 | error-ex@^1.3.1: 879 | version "1.3.2" 880 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 881 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 882 | dependencies: 883 | is-arrayish "^0.2.1" 884 | 885 | escalade@^3.1.1: 886 | version "3.1.1" 887 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 888 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 889 | 890 | escape-string-regexp@^1.0.5: 891 | version "1.0.5" 892 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 893 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 894 | 895 | figures@^3.1.0: 896 | version "3.2.0" 897 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 898 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 899 | dependencies: 900 | escape-string-regexp "^1.0.5" 901 | 902 | find-up@^2.0.0: 903 | version "2.1.0" 904 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 905 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== 906 | dependencies: 907 | locate-path "^2.0.0" 908 | 909 | find-up@^3.0.0: 910 | version "3.0.0" 911 | resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 912 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 913 | dependencies: 914 | locate-path "^3.0.0" 915 | 916 | find-up@^4.1.0: 917 | version "4.1.0" 918 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 919 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 920 | dependencies: 921 | locate-path "^5.0.0" 922 | path-exists "^4.0.0" 923 | 924 | find-up@^5.0.0: 925 | version "5.0.0" 926 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 927 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 928 | dependencies: 929 | locate-path "^6.0.0" 930 | path-exists "^4.0.0" 931 | 932 | follow-redirects@^1.14.0, follow-redirects@^1.14.9: 933 | version "1.15.2" 934 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" 935 | integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 936 | 937 | form-data@^4.0.0: 938 | version "4.0.0" 939 | resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" 940 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 941 | dependencies: 942 | asynckit "^0.4.0" 943 | combined-stream "^1.0.8" 944 | mime-types "^2.1.12" 945 | 946 | fs.realpath@^1.0.0: 947 | version "1.0.0" 948 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 949 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 950 | 951 | function-bind@^1.1.1: 952 | version "1.1.1" 953 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 954 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 955 | 956 | get-caller-file@^2.0.5: 957 | version "2.0.5" 958 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 959 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 960 | 961 | get-intrinsic@^1.1.1: 962 | version "1.1.3" 963 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 964 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 965 | dependencies: 966 | function-bind "^1.1.1" 967 | has "^1.0.3" 968 | has-symbols "^1.0.3" 969 | 970 | get-pkg-repo@^4.0.0: 971 | version "4.2.1" 972 | resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" 973 | integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== 974 | dependencies: 975 | "@hutson/parse-repository-url" "^3.0.0" 976 | hosted-git-info "^4.0.0" 977 | through2 "^2.0.0" 978 | yargs "^16.2.0" 979 | 980 | git-raw-commits@^2.0.8: 981 | version "2.0.11" 982 | resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" 983 | integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== 984 | dependencies: 985 | dargs "^7.0.0" 986 | lodash "^4.17.15" 987 | meow "^8.0.0" 988 | split2 "^3.0.0" 989 | through2 "^4.0.0" 990 | 991 | git-remote-origin-url@^2.0.0: 992 | version "2.0.0" 993 | resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 994 | integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== 995 | dependencies: 996 | gitconfiglocal "^1.0.0" 997 | pify "^2.3.0" 998 | 999 | git-semver-tags@^4.0.0, git-semver-tags@^4.1.1: 1000 | version "4.1.1" 1001 | resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" 1002 | integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== 1003 | dependencies: 1004 | meow "^8.0.0" 1005 | semver "^6.0.0" 1006 | 1007 | gitconfiglocal@^1.0.0: 1008 | version "1.0.0" 1009 | resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 1010 | integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== 1011 | dependencies: 1012 | ini "^1.3.2" 1013 | 1014 | glob@^7.1.3: 1015 | version "7.2.3" 1016 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1017 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1018 | dependencies: 1019 | fs.realpath "^1.0.0" 1020 | inflight "^1.0.4" 1021 | inherits "2" 1022 | minimatch "^3.1.1" 1023 | once "^1.3.0" 1024 | path-is-absolute "^1.0.0" 1025 | 1026 | globalthis@^1.0.1: 1027 | version "1.0.3" 1028 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1029 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1030 | dependencies: 1031 | define-properties "^1.1.3" 1032 | 1033 | graceful-fs@^4.1.2: 1034 | version "4.2.10" 1035 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1036 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1037 | 1038 | handlebars@^4.7.7: 1039 | version "4.7.7" 1040 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1041 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 1042 | dependencies: 1043 | minimist "^1.2.5" 1044 | neo-async "^2.6.0" 1045 | source-map "^0.6.1" 1046 | wordwrap "^1.0.0" 1047 | optionalDependencies: 1048 | uglify-js "^3.1.4" 1049 | 1050 | hard-rejection@^2.1.0: 1051 | version "2.1.0" 1052 | resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 1053 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 1054 | 1055 | has-flag@^3.0.0: 1056 | version "3.0.0" 1057 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1058 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1059 | 1060 | has-property-descriptors@^1.0.0: 1061 | version "1.0.0" 1062 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1063 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1064 | dependencies: 1065 | get-intrinsic "^1.1.1" 1066 | 1067 | has-symbols@^1.0.3: 1068 | version "1.0.3" 1069 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1070 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1071 | 1072 | has@^1.0.3: 1073 | version "1.0.3" 1074 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1075 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1076 | dependencies: 1077 | function-bind "^1.1.1" 1078 | 1079 | hash.js@^1.0.0, hash.js@^1.0.3: 1080 | version "1.1.7" 1081 | resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1082 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1083 | dependencies: 1084 | inherits "^2.0.3" 1085 | minimalistic-assert "^1.0.1" 1086 | 1087 | hmac-drbg@^1.0.1: 1088 | version "1.0.1" 1089 | resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1090 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 1091 | dependencies: 1092 | hash.js "^1.0.3" 1093 | minimalistic-assert "^1.0.0" 1094 | minimalistic-crypto-utils "^1.0.1" 1095 | 1096 | hosted-git-info@^2.1.4: 1097 | version "2.8.9" 1098 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1099 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1100 | 1101 | hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: 1102 | version "4.1.0" 1103 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 1104 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 1105 | dependencies: 1106 | lru-cache "^6.0.0" 1107 | 1108 | indent-string@^4.0.0: 1109 | version "4.0.0" 1110 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1111 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1112 | 1113 | inflight@^1.0.4: 1114 | version "1.0.6" 1115 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1116 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1117 | dependencies: 1118 | once "^1.3.0" 1119 | wrappy "1" 1120 | 1121 | inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 1122 | version "2.0.4" 1123 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1124 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1125 | 1126 | ini@^1.3.2: 1127 | version "1.3.8" 1128 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1129 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1130 | 1131 | is-arrayish@^0.2.1: 1132 | version "0.2.1" 1133 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1134 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1135 | 1136 | is-core-module@^2.5.0, is-core-module@^2.9.0: 1137 | version "2.11.0" 1138 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1139 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1140 | dependencies: 1141 | has "^1.0.3" 1142 | 1143 | is-fullwidth-code-point@^3.0.0: 1144 | version "3.0.0" 1145 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1146 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1147 | 1148 | is-obj@^2.0.0: 1149 | version "2.0.0" 1150 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1151 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1152 | 1153 | is-plain-obj@^1.1.0: 1154 | version "1.1.0" 1155 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1156 | integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== 1157 | 1158 | is-text-path@^1.0.1: 1159 | version "1.0.1" 1160 | resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1161 | integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== 1162 | dependencies: 1163 | text-extensions "^1.0.0" 1164 | 1165 | isarray@~1.0.0: 1166 | version "1.0.0" 1167 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1168 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1169 | 1170 | isomorphic-ws@^4.0.1: 1171 | version "4.0.1" 1172 | resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" 1173 | integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== 1174 | 1175 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1176 | version "4.0.0" 1177 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1178 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1179 | 1180 | json-parse-better-errors@^1.0.1: 1181 | version "1.0.2" 1182 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1183 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1184 | 1185 | json-parse-even-better-errors@^2.3.0: 1186 | version "2.3.1" 1187 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1188 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1189 | 1190 | json-stringify-safe@^5.0.1: 1191 | version "5.0.1" 1192 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1193 | integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== 1194 | 1195 | jsonparse@^1.2.0: 1196 | version "1.3.1" 1197 | resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1198 | integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== 1199 | 1200 | kind-of@^6.0.3: 1201 | version "6.0.3" 1202 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1203 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1204 | 1205 | libsodium-wrappers@^0.7.6: 1206 | version "0.7.10" 1207 | resolved "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.10.tgz#13ced44cacb0fc44d6ac9ce67d725956089ce733" 1208 | integrity sha512-pO3F1Q9NPLB/MWIhehim42b/Fwb30JNScCNh8TcQ/kIc+qGLQch8ag8wb0keK3EP5kbGakk1H8Wwo7v+36rNQg== 1209 | dependencies: 1210 | libsodium "^0.7.0" 1211 | 1212 | libsodium@^0.7.0: 1213 | version "0.7.10" 1214 | resolved "https://registry.npmjs.org/libsodium/-/libsodium-0.7.10.tgz#c2429a7e4c0836f879d701fec2c8a208af024159" 1215 | integrity sha512-eY+z7hDrDKxkAK+QKZVNv92A5KYkxfvIshtBJkmg5TSiCnYqZP3i9OO9whE79Pwgm4jGaoHgkM4ao/b9Cyu4zQ== 1216 | 1217 | lines-and-columns@^1.1.6: 1218 | version "1.2.4" 1219 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1220 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1221 | 1222 | load-json-file@^4.0.0: 1223 | version "4.0.0" 1224 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1225 | integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== 1226 | dependencies: 1227 | graceful-fs "^4.1.2" 1228 | parse-json "^4.0.0" 1229 | pify "^3.0.0" 1230 | strip-bom "^3.0.0" 1231 | 1232 | locate-path@^2.0.0: 1233 | version "2.0.0" 1234 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1235 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== 1236 | dependencies: 1237 | p-locate "^2.0.0" 1238 | path-exists "^3.0.0" 1239 | 1240 | locate-path@^3.0.0: 1241 | version "3.0.0" 1242 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1243 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1244 | dependencies: 1245 | p-locate "^3.0.0" 1246 | path-exists "^3.0.0" 1247 | 1248 | locate-path@^5.0.0: 1249 | version "5.0.0" 1250 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1251 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1252 | dependencies: 1253 | p-locate "^4.1.0" 1254 | 1255 | locate-path@^6.0.0: 1256 | version "6.0.0" 1257 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1258 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1259 | dependencies: 1260 | p-locate "^5.0.0" 1261 | 1262 | lodash.ismatch@^4.4.0: 1263 | version "4.4.0" 1264 | resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" 1265 | integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== 1266 | 1267 | lodash@^4.17.15: 1268 | version "4.17.21" 1269 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1270 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1271 | 1272 | long@^4.0.0: 1273 | version "4.0.0" 1274 | resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1275 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 1276 | 1277 | long@^5.2.0: 1278 | version "5.2.0" 1279 | resolved "https://registry.npmjs.org/long/-/long-5.2.0.tgz#2696dadf4b4da2ce3f6f6b89186085d94d52fd61" 1280 | integrity sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w== 1281 | 1282 | loose-envify@^1.1.0: 1283 | version "1.4.0" 1284 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 1285 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1286 | dependencies: 1287 | js-tokens "^3.0.0 || ^4.0.0" 1288 | 1289 | lru-cache@^6.0.0: 1290 | version "6.0.0" 1291 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1292 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1293 | dependencies: 1294 | yallist "^4.0.0" 1295 | 1296 | map-obj@^1.0.0: 1297 | version "1.0.1" 1298 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1299 | integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== 1300 | 1301 | map-obj@^4.0.0: 1302 | version "4.3.0" 1303 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 1304 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1305 | 1306 | meow@^8.0.0: 1307 | version "8.1.2" 1308 | resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" 1309 | integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== 1310 | dependencies: 1311 | "@types/minimist" "^1.2.0" 1312 | camelcase-keys "^6.2.2" 1313 | decamelize-keys "^1.1.0" 1314 | hard-rejection "^2.1.0" 1315 | minimist-options "4.1.0" 1316 | normalize-package-data "^3.0.0" 1317 | read-pkg-up "^7.0.1" 1318 | redent "^3.0.0" 1319 | trim-newlines "^3.0.0" 1320 | type-fest "^0.18.0" 1321 | yargs-parser "^20.2.3" 1322 | 1323 | mime-db@1.52.0: 1324 | version "1.52.0" 1325 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1326 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1327 | 1328 | mime-types@^2.1.12: 1329 | version "2.1.35" 1330 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1331 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1332 | dependencies: 1333 | mime-db "1.52.0" 1334 | 1335 | min-indent@^1.0.0: 1336 | version "1.0.1" 1337 | resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1338 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1339 | 1340 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1341 | version "1.0.1" 1342 | resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1343 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 1344 | 1345 | minimalistic-crypto-utils@^1.0.1: 1346 | version "1.0.1" 1347 | resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1348 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 1349 | 1350 | minimatch@^3.0.4, minimatch@^3.1.1: 1351 | version "3.1.2" 1352 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1353 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1354 | dependencies: 1355 | brace-expansion "^1.1.7" 1356 | 1357 | minimist-options@4.1.0: 1358 | version "4.1.0" 1359 | resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1360 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1361 | dependencies: 1362 | arrify "^1.0.1" 1363 | is-plain-obj "^1.1.0" 1364 | kind-of "^6.0.3" 1365 | 1366 | minimist@^1.2.5: 1367 | version "1.2.7" 1368 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1369 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1370 | 1371 | modify-values@^1.0.0: 1372 | version "1.0.1" 1373 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 1374 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== 1375 | 1376 | neo-async@^2.6.0: 1377 | version "2.6.2" 1378 | resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1379 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1380 | 1381 | normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 1382 | version "2.5.0" 1383 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1384 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1385 | dependencies: 1386 | hosted-git-info "^2.1.4" 1387 | resolve "^1.10.0" 1388 | semver "2 || 3 || 4 || 5" 1389 | validate-npm-package-license "^3.0.1" 1390 | 1391 | normalize-package-data@^3.0.0: 1392 | version "3.0.3" 1393 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" 1394 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 1395 | dependencies: 1396 | hosted-git-info "^4.0.1" 1397 | is-core-module "^2.5.0" 1398 | semver "^7.3.4" 1399 | validate-npm-package-license "^3.0.1" 1400 | 1401 | object-assign@^4.1.1: 1402 | version "4.1.1" 1403 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1404 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1405 | 1406 | object-keys@^1.1.1: 1407 | version "1.1.1" 1408 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1409 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1410 | 1411 | once@^1.3.0: 1412 | version "1.4.0" 1413 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1414 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1415 | dependencies: 1416 | wrappy "1" 1417 | 1418 | p-limit@^1.1.0: 1419 | version "1.3.0" 1420 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1421 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1422 | dependencies: 1423 | p-try "^1.0.0" 1424 | 1425 | p-limit@^2.0.0, p-limit@^2.2.0: 1426 | version "2.3.0" 1427 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1428 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1429 | dependencies: 1430 | p-try "^2.0.0" 1431 | 1432 | p-limit@^3.0.2: 1433 | version "3.1.0" 1434 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1435 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1436 | dependencies: 1437 | yocto-queue "^0.1.0" 1438 | 1439 | p-locate@^2.0.0: 1440 | version "2.0.0" 1441 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1442 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== 1443 | dependencies: 1444 | p-limit "^1.1.0" 1445 | 1446 | p-locate@^3.0.0: 1447 | version "3.0.0" 1448 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1449 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1450 | dependencies: 1451 | p-limit "^2.0.0" 1452 | 1453 | p-locate@^4.1.0: 1454 | version "4.1.0" 1455 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1456 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1457 | dependencies: 1458 | p-limit "^2.2.0" 1459 | 1460 | p-locate@^5.0.0: 1461 | version "5.0.0" 1462 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1463 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1464 | dependencies: 1465 | p-limit "^3.0.2" 1466 | 1467 | p-try@^1.0.0: 1468 | version "1.0.0" 1469 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1470 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== 1471 | 1472 | p-try@^2.0.0: 1473 | version "2.2.0" 1474 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1475 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1476 | 1477 | parse-json@^4.0.0: 1478 | version "4.0.0" 1479 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1480 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== 1481 | dependencies: 1482 | error-ex "^1.3.1" 1483 | json-parse-better-errors "^1.0.1" 1484 | 1485 | parse-json@^5.0.0: 1486 | version "5.2.0" 1487 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1488 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1489 | dependencies: 1490 | "@babel/code-frame" "^7.0.0" 1491 | error-ex "^1.3.1" 1492 | json-parse-even-better-errors "^2.3.0" 1493 | lines-and-columns "^1.1.6" 1494 | 1495 | path-exists@^3.0.0: 1496 | version "3.0.0" 1497 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1498 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 1499 | 1500 | path-exists@^4.0.0: 1501 | version "4.0.0" 1502 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1503 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1504 | 1505 | path-is-absolute@^1.0.0: 1506 | version "1.0.1" 1507 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1508 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1509 | 1510 | path-parse@^1.0.7: 1511 | version "1.0.7" 1512 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1513 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1514 | 1515 | path-type@^3.0.0: 1516 | version "3.0.0" 1517 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1518 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1519 | dependencies: 1520 | pify "^3.0.0" 1521 | 1522 | pify@^2.3.0: 1523 | version "2.3.0" 1524 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1525 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1526 | 1527 | pify@^3.0.0: 1528 | version "3.0.0" 1529 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1530 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== 1531 | 1532 | prettier@^2.7.1: 1533 | version "2.7.1" 1534 | resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 1535 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 1536 | 1537 | process-nextick-args@~2.0.0: 1538 | version "2.0.1" 1539 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1540 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1541 | 1542 | protobufjs@^6.11.2, protobufjs@^6.11.3, protobufjs@^6.8.8, protobufjs@~6.11.2, protobufjs@~6.11.3: 1543 | version "6.11.3" 1544 | resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" 1545 | integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== 1546 | dependencies: 1547 | "@protobufjs/aspromise" "^1.1.2" 1548 | "@protobufjs/base64" "^1.1.2" 1549 | "@protobufjs/codegen" "^2.0.4" 1550 | "@protobufjs/eventemitter" "^1.1.0" 1551 | "@protobufjs/fetch" "^1.1.0" 1552 | "@protobufjs/float" "^1.0.2" 1553 | "@protobufjs/inquire" "^1.1.0" 1554 | "@protobufjs/path" "^1.1.2" 1555 | "@protobufjs/pool" "^1.1.0" 1556 | "@protobufjs/utf8" "^1.1.0" 1557 | "@types/long" "^4.0.1" 1558 | "@types/node" ">=13.7.0" 1559 | long "^4.0.0" 1560 | 1561 | q@^1.5.1: 1562 | version "1.5.1" 1563 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1564 | integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== 1565 | 1566 | quick-lru@^4.0.1: 1567 | version "4.0.1" 1568 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 1569 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 1570 | 1571 | react@^17.0.1: 1572 | version "17.0.2" 1573 | resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" 1574 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1575 | dependencies: 1576 | loose-envify "^1.1.0" 1577 | object-assign "^4.1.1" 1578 | 1579 | read-pkg-up@^3.0.0: 1580 | version "3.0.0" 1581 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1582 | integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== 1583 | dependencies: 1584 | find-up "^2.0.0" 1585 | read-pkg "^3.0.0" 1586 | 1587 | read-pkg-up@^7.0.1: 1588 | version "7.0.1" 1589 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 1590 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 1591 | dependencies: 1592 | find-up "^4.1.0" 1593 | read-pkg "^5.2.0" 1594 | type-fest "^0.8.1" 1595 | 1596 | read-pkg@^3.0.0: 1597 | version "3.0.0" 1598 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1599 | integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== 1600 | dependencies: 1601 | load-json-file "^4.0.0" 1602 | normalize-package-data "^2.3.2" 1603 | path-type "^3.0.0" 1604 | 1605 | read-pkg@^5.2.0: 1606 | version "5.2.0" 1607 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1608 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1609 | dependencies: 1610 | "@types/normalize-package-data" "^2.4.0" 1611 | normalize-package-data "^2.5.0" 1612 | parse-json "^5.0.0" 1613 | type-fest "^0.6.0" 1614 | 1615 | readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2: 1616 | version "3.6.0" 1617 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1618 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1619 | dependencies: 1620 | inherits "^2.0.3" 1621 | string_decoder "^1.1.1" 1622 | util-deprecate "^1.0.1" 1623 | 1624 | readable-stream@~2.3.6: 1625 | version "2.3.7" 1626 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1627 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1628 | dependencies: 1629 | core-util-is "~1.0.0" 1630 | inherits "~2.0.3" 1631 | isarray "~1.0.0" 1632 | process-nextick-args "~2.0.0" 1633 | safe-buffer "~5.1.1" 1634 | string_decoder "~1.1.1" 1635 | util-deprecate "~1.0.1" 1636 | 1637 | readonly-date@^1.0.0: 1638 | version "1.0.0" 1639 | resolved "https://registry.npmjs.org/readonly-date/-/readonly-date-1.0.0.tgz#5af785464d8c7d7c40b9d738cbde8c646f97dcd9" 1640 | integrity sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ== 1641 | 1642 | redent@^3.0.0: 1643 | version "3.0.0" 1644 | resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 1645 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 1646 | dependencies: 1647 | indent-string "^4.0.0" 1648 | strip-indent "^3.0.0" 1649 | 1650 | regenerator-runtime@^0.13.4: 1651 | version "0.13.10" 1652 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" 1653 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== 1654 | 1655 | require-directory@^2.1.1: 1656 | version "2.1.1" 1657 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1658 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1659 | 1660 | resolve@^1.10.0: 1661 | version "1.22.1" 1662 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1663 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1664 | dependencies: 1665 | is-core-module "^2.9.0" 1666 | path-parse "^1.0.7" 1667 | supports-preserve-symlinks-flag "^1.0.0" 1668 | 1669 | rimraf@^3.0.2: 1670 | version "3.0.2" 1671 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1672 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1673 | dependencies: 1674 | glob "^7.1.3" 1675 | 1676 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1677 | version "5.1.2" 1678 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1679 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1680 | 1681 | safe-buffer@~5.2.0: 1682 | version "5.2.1" 1683 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1684 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1685 | 1686 | "semver@2 || 3 || 4 || 5": 1687 | version "5.7.1" 1688 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1689 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1690 | 1691 | semver@^6.0.0: 1692 | version "6.3.0" 1693 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1694 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1695 | 1696 | semver@^7.1.1, semver@^7.3.4: 1697 | version "7.3.8" 1698 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1699 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1700 | dependencies: 1701 | lru-cache "^6.0.0" 1702 | 1703 | source-map@^0.6.1: 1704 | version "0.6.1" 1705 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1706 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1707 | 1708 | spdx-correct@^3.0.0: 1709 | version "3.1.1" 1710 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1711 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1712 | dependencies: 1713 | spdx-expression-parse "^3.0.0" 1714 | spdx-license-ids "^3.0.0" 1715 | 1716 | spdx-exceptions@^2.1.0: 1717 | version "2.3.0" 1718 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1719 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1720 | 1721 | spdx-expression-parse@^3.0.0: 1722 | version "3.0.1" 1723 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1724 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1725 | dependencies: 1726 | spdx-exceptions "^2.1.0" 1727 | spdx-license-ids "^3.0.0" 1728 | 1729 | spdx-license-ids@^3.0.0: 1730 | version "3.0.12" 1731 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" 1732 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== 1733 | 1734 | split2@^3.0.0: 1735 | version "3.2.2" 1736 | resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" 1737 | integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== 1738 | dependencies: 1739 | readable-stream "^3.0.0" 1740 | 1741 | split@^1.0.0: 1742 | version "1.0.1" 1743 | resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1744 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 1745 | dependencies: 1746 | through "2" 1747 | 1748 | standard-version@^9.5.0: 1749 | version "9.5.0" 1750 | resolved "https://registry.npmjs.org/standard-version/-/standard-version-9.5.0.tgz#851d6dcddf5320d5079601832aeb185dbf497949" 1751 | integrity sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q== 1752 | dependencies: 1753 | chalk "^2.4.2" 1754 | conventional-changelog "3.1.25" 1755 | conventional-changelog-config-spec "2.1.0" 1756 | conventional-changelog-conventionalcommits "4.6.3" 1757 | conventional-recommended-bump "6.1.0" 1758 | detect-indent "^6.0.0" 1759 | detect-newline "^3.1.0" 1760 | dotgitignore "^2.1.0" 1761 | figures "^3.1.0" 1762 | find-up "^5.0.0" 1763 | git-semver-tags "^4.0.0" 1764 | semver "^7.1.1" 1765 | stringify-package "^1.0.1" 1766 | yargs "^16.0.0" 1767 | 1768 | string-width@^4.1.0, string-width@^4.2.0: 1769 | version "4.2.3" 1770 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1771 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1772 | dependencies: 1773 | emoji-regex "^8.0.0" 1774 | is-fullwidth-code-point "^3.0.0" 1775 | strip-ansi "^6.0.1" 1776 | 1777 | string_decoder@^1.1.1: 1778 | version "1.3.0" 1779 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1780 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1781 | dependencies: 1782 | safe-buffer "~5.2.0" 1783 | 1784 | string_decoder@~1.1.1: 1785 | version "1.1.1" 1786 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1787 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1788 | dependencies: 1789 | safe-buffer "~5.1.0" 1790 | 1791 | stringify-package@^1.0.1: 1792 | version "1.0.1" 1793 | resolved "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" 1794 | integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== 1795 | 1796 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1797 | version "6.0.1" 1798 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1799 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1800 | dependencies: 1801 | ansi-regex "^5.0.1" 1802 | 1803 | strip-bom@^3.0.0: 1804 | version "3.0.0" 1805 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1806 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1807 | 1808 | strip-indent@^3.0.0: 1809 | version "3.0.0" 1810 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 1811 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 1812 | dependencies: 1813 | min-indent "^1.0.0" 1814 | 1815 | supports-color@^5.3.0: 1816 | version "5.5.0" 1817 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1818 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1819 | dependencies: 1820 | has-flag "^3.0.0" 1821 | 1822 | supports-preserve-symlinks-flag@^1.0.0: 1823 | version "1.0.0" 1824 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1825 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1826 | 1827 | symbol-observable@^2.0.3: 1828 | version "2.0.3" 1829 | resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a" 1830 | integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA== 1831 | 1832 | text-extensions@^1.0.0: 1833 | version "1.9.0" 1834 | resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 1835 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== 1836 | 1837 | through2@^2.0.0: 1838 | version "2.0.5" 1839 | resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 1840 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 1841 | dependencies: 1842 | readable-stream "~2.3.6" 1843 | xtend "~4.0.1" 1844 | 1845 | through2@^4.0.0: 1846 | version "4.0.2" 1847 | resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" 1848 | integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== 1849 | dependencies: 1850 | readable-stream "3" 1851 | 1852 | through@2, "through@>=2.2.7 <3": 1853 | version "2.3.8" 1854 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1855 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 1856 | 1857 | trim-newlines@^3.0.0: 1858 | version "3.0.1" 1859 | resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" 1860 | integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== 1861 | 1862 | type-fest@^0.18.0: 1863 | version "0.18.1" 1864 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" 1865 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 1866 | 1867 | type-fest@^0.6.0: 1868 | version "0.6.0" 1869 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 1870 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 1871 | 1872 | type-fest@^0.8.1: 1873 | version "0.8.1" 1874 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1875 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1876 | 1877 | typedarray@^0.0.6: 1878 | version "0.0.6" 1879 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1880 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== 1881 | 1882 | typescript@^4.8.3: 1883 | version "4.8.3" 1884 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz" 1885 | integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== 1886 | 1887 | uglify-js@^3.1.4: 1888 | version "3.17.3" 1889 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377" 1890 | integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg== 1891 | 1892 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 1893 | version "1.0.2" 1894 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1895 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1896 | 1897 | validate-npm-package-license@^3.0.1: 1898 | version "3.0.4" 1899 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1900 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1901 | dependencies: 1902 | spdx-correct "^3.0.0" 1903 | spdx-expression-parse "^3.0.0" 1904 | 1905 | wordwrap@^1.0.0: 1906 | version "1.0.0" 1907 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1908 | integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== 1909 | 1910 | wrap-ansi@^7.0.0: 1911 | version "7.0.0" 1912 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1913 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1914 | dependencies: 1915 | ansi-styles "^4.0.0" 1916 | string-width "^4.1.0" 1917 | strip-ansi "^6.0.0" 1918 | 1919 | wrappy@1: 1920 | version "1.0.2" 1921 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1922 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1923 | 1924 | ws@^7: 1925 | version "7.5.9" 1926 | resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" 1927 | integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== 1928 | 1929 | xstream@^11.14.0: 1930 | version "11.14.0" 1931 | resolved "https://registry.npmjs.org/xstream/-/xstream-11.14.0.tgz#2c071d26b18310523b6877e86b4e54df068a9ae5" 1932 | integrity sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw== 1933 | dependencies: 1934 | globalthis "^1.0.1" 1935 | symbol-observable "^2.0.3" 1936 | 1937 | xtend@~4.0.1: 1938 | version "4.0.2" 1939 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1940 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1941 | 1942 | y18n@^5.0.5: 1943 | version "5.0.8" 1944 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 1945 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 1946 | 1947 | yallist@^4.0.0: 1948 | version "4.0.0" 1949 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1950 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1951 | 1952 | yargs-parser@^20.2.2, yargs-parser@^20.2.3: 1953 | version "20.2.9" 1954 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 1955 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 1956 | 1957 | yargs@^16.0.0, yargs@^16.2.0: 1958 | version "16.2.0" 1959 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 1960 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 1961 | dependencies: 1962 | cliui "^7.0.2" 1963 | escalade "^3.1.1" 1964 | get-caller-file "^2.0.5" 1965 | require-directory "^2.1.1" 1966 | string-width "^4.2.0" 1967 | y18n "^5.0.5" 1968 | yargs-parser "^20.2.2" 1969 | 1970 | yocto-queue@^0.1.0: 1971 | version "0.1.0" 1972 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1973 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1974 | -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- 1 | Arguments: 2 | /Users/carsonaberle/.nvm/versions/node/v16.4.1/bin/node /Users/carsonaberle/.nvm/versions/node/v16.4.1/bin/yarn build 3 | 4 | PATH: 5 | /Users/carsonaberle/.amplify/bin:/Users/carsonaberle/Library/Android/sdk/emulator:/Users/carsonaberle/Library/Android/sdk/tools:/Users/carsonaberle/.pyenv/shims:/Users/carsonaberle/google-cloud-sdk/bin:/Users/carsonaberle/.nvm/versions/node/v16.4.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/carsonaberle/Development/Element/sei/@sei-js/js-react/node_modules/.bin 6 | 7 | Yarn version: 8 | 1.22.19 9 | 10 | Node version: 11 | 16.4.1 12 | 13 | Platform: 14 | darwin x64 15 | 16 | Trace: 17 | SyntaxError: /Users/carsonaberle/Development/Element/sei/@sei-js/js-react/package.json: Unexpected token } in JSON at position 1051 18 | at JSON.parse () 19 | at /Users/carsonaberle/.nvm/versions/node/v16.4.1/lib/node_modules/yarn/lib/cli.js:1629:59 20 | at Generator.next () 21 | at step (/Users/carsonaberle/.nvm/versions/node/v16.4.1/lib/node_modules/yarn/lib/cli.js:310:30) 22 | at /Users/carsonaberle/.nvm/versions/node/v16.4.1/lib/node_modules/yarn/lib/cli.js:321:13 23 | 24 | npm manifest: 25 | { 26 | "name": "@sei-js/react", 27 | "version": "1.0.39", 28 | "description": "A set of React helpers for @sei-js/core", 29 | "main": "./index.js", 30 | "types": "./index.d.ts", 31 | "scripts": { 32 | "deploy": "cd lib && npm publish --access public", 33 | "predeploy": "yarn build && cp package.json lib && cp README.md lib", 34 | "build": "yarn clean && tsc", 35 | "clean": "rimraf lib", 36 | "release": "standard-version", 37 | "postrelease": "git push --follow-tags origin main" 38 | }, 39 | "repository": { 40 | "type": "git", 41 | "url": "git+https://github.com/sei-protocol/js-react.git" 42 | }, 43 | "keywords": [ 44 | "sei", 45 | "react" 46 | ], 47 | "author": "Carson Aberle", 48 | "license": "MIT", 49 | "bugs": { 50 | "url": "https://github.com/sei-protocol/js-react/issues" 51 | }, 52 | "homepage": "https://github.com/sei-protocol/js-react#readme", 53 | "devDependencies": { 54 | "@types/react": "^17.0.1", 55 | "prettier": "^2.7.1", 56 | "react": "^17.0.1", 57 | "rimraf": "^3.0.2", 58 | "standard-version": "^9.5.0", 59 | "typescript": "^4.8.3" 60 | }, 61 | "dependencies": { 62 | "@sei-js/core": "^1.0.36", 63 | }, 64 | "browserslist": [ 65 | ">0.2%", 66 | "not dead", 67 | "not op_mini all" 68 | ] 69 | } 70 | 71 | yarn manifest: 72 | No manifest 73 | 74 | Lockfile: 75 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 76 | # yarn lockfile v1 77 | 78 | 79 | "@babel/code-frame@^7.0.0": 80 | version "7.18.6" 81 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 82 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 83 | dependencies: 84 | "@babel/highlight" "^7.18.6" 85 | 86 | "@babel/helper-validator-identifier@^7.18.6": 87 | version "7.19.1" 88 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 89 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 90 | 91 | "@babel/highlight@^7.18.6": 92 | version "7.18.6" 93 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 94 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 95 | dependencies: 96 | "@babel/helper-validator-identifier" "^7.18.6" 97 | chalk "^2.0.0" 98 | js-tokens "^4.0.0" 99 | 100 | "@babel/runtime@^7.18.9", "@babel/runtime@^7.19.0": 101 | version "7.19.4" 102 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" 103 | integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== 104 | dependencies: 105 | regenerator-runtime "^0.13.4" 106 | 107 | "@confio/ics23@^0.6.8": 108 | version "0.6.8" 109 | resolved "https://registry.npmjs.org/@confio/ics23/-/ics23-0.6.8.tgz#2a6b4f1f2b7b20a35d9a0745bb5a446e72930b3d" 110 | integrity sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w== 111 | dependencies: 112 | "@noble/hashes" "^1.0.0" 113 | protobufjs "^6.8.8" 114 | 115 | "@cosmjs/amino@0.28.13": 116 | version "0.28.13" 117 | resolved "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.28.13.tgz#b51417a23c1ff8ef8b85a6862eba8492c6c44f38" 118 | integrity sha512-IHnH2zGwaY69qT4mVAavr/pfzx6YE+ud1NHJbvVePlbGiz68CXTi5LHR+K0lrKB5mQ7E+ZErWz2mw5U/x+V1wQ== 119 | dependencies: 120 | "@cosmjs/crypto" "0.28.13" 121 | "@cosmjs/encoding" "0.28.13" 122 | "@cosmjs/math" "0.28.13" 123 | "@cosmjs/utils" "0.28.13" 124 | 125 | "@cosmjs/amino@0.29.0", "@cosmjs/amino@^0.29.0": 126 | version "0.29.0" 127 | resolved "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.29.0.tgz#35873a580a6102e48415ed2b5b97477f146fb50d" 128 | integrity sha512-/ZUVx6nRN5YE36H3SDq9+i8g2nZ8DJQnN9fVRC8rSHQKauNkoEuK4NxTNcQ2o2EBLUT0kyYAFY2550HVsPMrgw== 129 | dependencies: 130 | "@cosmjs/crypto" "^0.29.0" 131 | "@cosmjs/encoding" "^0.29.0" 132 | "@cosmjs/math" "^0.29.0" 133 | "@cosmjs/utils" "^0.29.0" 134 | 135 | "@cosmjs/crypto@0.28.13": 136 | version "0.28.13" 137 | resolved "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.28.13.tgz#541b6a36f616b2da5a568ead46d4e83841ceb412" 138 | integrity sha512-ynKfM0q/tMBQMHJby6ad8lR3gkgBKaelQhIsCZTjClsnuC7oYT9y3ThSZCUWr7Pa9h0J8ahU2YV2oFWFVWJQzQ== 139 | dependencies: 140 | "@cosmjs/encoding" "0.28.13" 141 | "@cosmjs/math" "0.28.13" 142 | "@cosmjs/utils" "0.28.13" 143 | "@noble/hashes" "^1" 144 | bn.js "^5.2.0" 145 | elliptic "^6.5.3" 146 | libsodium-wrappers "^0.7.6" 147 | 148 | "@cosmjs/crypto@^0.29.0": 149 | version "0.29.0" 150 | resolved "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.29.0.tgz#c914424a8b538f6624e505bc2015a71e3977c2fb" 151 | integrity sha512-MPJoebRGh7AcZgbfR25ci7iV+XzJiKwVq4wL8n6M5P2QdrIv7DqqniyFXcBbn9dQjMLMHnOSgT9LRv+VXzUVCA== 152 | dependencies: 153 | "@cosmjs/encoding" "^0.29.0" 154 | "@cosmjs/math" "^0.29.0" 155 | "@cosmjs/utils" "^0.29.0" 156 | "@noble/hashes" "^1" 157 | bn.js "^5.2.0" 158 | elliptic "^6.5.3" 159 | libsodium-wrappers "^0.7.6" 160 | 161 | "@cosmjs/encoding@0.28.13": 162 | version "0.28.13" 163 | resolved "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.28.13.tgz#7994e8e2c435beaf0690296ffb0f7f3eaec8150b" 164 | integrity sha512-jtXbAYtV77rLHxoIrjGFsvgGjeTKttuHRv6cvuy3toCZzY7JzTclKH5O2g36IIE4lXwD9xwuhGJ2aa6A3dhNkA== 165 | dependencies: 166 | base64-js "^1.3.0" 167 | bech32 "^1.1.4" 168 | readonly-date "^1.0.0" 169 | 170 | "@cosmjs/encoding@^0.29.0": 171 | version "0.29.0" 172 | resolved "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.29.0.tgz#75b1b41a2f31f71fcb0982cd1b210d6410739fd0" 173 | integrity sha512-6HDBtid/YLbyXapY6PdMMIigAtGKyD1w0dUCLU1dOIkPf1q3y43kqoA7WnLkRw0g0/lZY1VGM2fX+2RWU0wxYg== 174 | dependencies: 175 | base64-js "^1.3.0" 176 | bech32 "^1.1.4" 177 | readonly-date "^1.0.0" 178 | 179 | "@cosmjs/json-rpc@0.28.13": 180 | version "0.28.13" 181 | resolved "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.28.13.tgz#ff3f0c4a2f363b1a2c6779f8624a897e217fe297" 182 | integrity sha512-fInSvg7x9P6p+GWqet+TMhrMTM3OWWdLJOGS5w2ryubMjgpR1rLiAx77MdTNkArW+/6sUwku0sN4veM4ENQu6A== 183 | dependencies: 184 | "@cosmjs/stream" "0.28.13" 185 | xstream "^11.14.0" 186 | 187 | "@cosmjs/json-rpc@^0.29.0": 188 | version "0.29.0" 189 | resolved "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.29.0.tgz#481f282bcb3457c71f393342691e957a4fa56535" 190 | integrity sha512-noCt91X+dSYjW1BYbp5jFaYaA/PWIQFXOgl4ZDW0ecGOAj8xh6/D/Vd8bDO97CQgJ1KVw0pyAqVhmrBOBUo1sA== 191 | dependencies: 192 | "@cosmjs/stream" "^0.29.0" 193 | xstream "^11.14.0" 194 | 195 | "@cosmjs/math@0.28.13": 196 | version "0.28.13" 197 | resolved "https://registry.npmjs.org/@cosmjs/math/-/math-0.28.13.tgz#50c05bc67007a04216f7f5e0c93f57270f8cc077" 198 | integrity sha512-PDpL8W/kbyeWi0mQ2OruyqE8ZUAdxPs1xCbDX3WXJwy2oU+X2UTbkuweJHVpS9CIqmZulBoWQAmlf6t6zr1N/g== 199 | dependencies: 200 | bn.js "^5.2.0" 201 | 202 | "@cosmjs/math@^0.29.0": 203 | version "0.29.0" 204 | resolved "https://registry.npmjs.org/@cosmjs/math/-/math-0.29.0.tgz#2c34f96d94055fe82ca310bec7b2d8a9f1c507cb" 205 | integrity sha512-ufRRmyDQtJUrH8r1V4N7Q6rTOk9ZX7XIXjJto7cfXP8kcxm7IJXKYk+r0EfDnNHFkxTidYvW/1YXeeNoy8xZYw== 206 | dependencies: 207 | bn.js "^5.2.0" 208 | 209 | "@cosmjs/proto-signing@0.28.13": 210 | version "0.28.13" 211 | resolved "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.28.13.tgz#95ac12f0da0f0814f348f5ae996c3e96d015df61" 212 | integrity sha512-nSl/2ZLsUJYz3Ad0RY3ihZUgRHIow2OnYqKsESMu+3RA/jTi9bDYhiBu8mNMHI0xrEJry918B2CyI56pOUHdPQ== 213 | dependencies: 214 | "@cosmjs/amino" "0.28.13" 215 | "@cosmjs/crypto" "0.28.13" 216 | "@cosmjs/encoding" "0.28.13" 217 | "@cosmjs/math" "0.28.13" 218 | "@cosmjs/utils" "0.28.13" 219 | cosmjs-types "^0.4.0" 220 | long "^4.0.0" 221 | 222 | "@cosmjs/proto-signing@0.29.0", "@cosmjs/proto-signing@^0.29.0": 223 | version "0.29.0" 224 | resolved "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.29.0.tgz#4d9c10fc3a5c64b454bd2d9b407861fcffdfbbe0" 225 | integrity sha512-zAdgDz5vRGAfJ5yyKYuTL7qg5UNUT7v4iV1/ZP8ZQn2fLh9QVxViAIovF4r/Y3EEI4JS5uYj/f8UeHMHQSu8hw== 226 | dependencies: 227 | "@cosmjs/amino" "^0.29.0" 228 | "@cosmjs/crypto" "^0.29.0" 229 | "@cosmjs/encoding" "^0.29.0" 230 | "@cosmjs/math" "^0.29.0" 231 | "@cosmjs/utils" "^0.29.0" 232 | cosmjs-types "^0.5.0" 233 | long "^4.0.0" 234 | 235 | "@cosmjs/socket@0.28.13": 236 | version "0.28.13" 237 | resolved "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.28.13.tgz#d8443ad6e91d080fc6b80a7e9cf297a56b1f6833" 238 | integrity sha512-lavwGxQ5VdeltyhpFtwCRVfxeWjH5D5mmN7jgx9nuCf3XSFbTcOYxrk2pQ4usenu1Q1KZdL4Yl5RCNrJuHD9Ug== 239 | dependencies: 240 | "@cosmjs/stream" "0.28.13" 241 | isomorphic-ws "^4.0.1" 242 | ws "^7" 243 | xstream "^11.14.0" 244 | 245 | "@cosmjs/socket@^0.29.0": 246 | version "0.29.0" 247 | resolved "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.29.0.tgz#6f8f56799e69ead02f9ffe8925c782804635ac89" 248 | integrity sha512-y7cOBp6YJ2Sn/DZne1eiJ6PVkgZlAi48d0Bz6hVuZ6CliutG0BzM/F3bSLxdw8m2fXNU+lYsi4uLPd0epf5Hig== 249 | dependencies: 250 | "@cosmjs/stream" "^0.29.0" 251 | isomorphic-ws "^4.0.1" 252 | ws "^7" 253 | xstream "^11.14.0" 254 | 255 | "@cosmjs/stargate@0.28.13": 256 | version "0.28.13" 257 | resolved "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.28.13.tgz#a73d837a46ee8944e6eafe162f2ff6943c14350e" 258 | integrity sha512-dVBMazDz8/eActHsRcZjDHHptOBMqvibj5CFgEtZBp22gP6ASzoAUXTlkSVk5FBf4sfuUHoff6st134/+PGMAg== 259 | dependencies: 260 | "@confio/ics23" "^0.6.8" 261 | "@cosmjs/amino" "0.28.13" 262 | "@cosmjs/encoding" "0.28.13" 263 | "@cosmjs/math" "0.28.13" 264 | "@cosmjs/proto-signing" "0.28.13" 265 | "@cosmjs/stream" "0.28.13" 266 | "@cosmjs/tendermint-rpc" "0.28.13" 267 | "@cosmjs/utils" "0.28.13" 268 | cosmjs-types "^0.4.0" 269 | long "^4.0.0" 270 | protobufjs "~6.11.3" 271 | xstream "^11.14.0" 272 | 273 | "@cosmjs/stargate@0.29.0", "@cosmjs/stargate@^0.29.0": 274 | version "0.29.0" 275 | resolved "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.29.0.tgz#55263ed9d414f2c3073a451527576e4c3d6f04a6" 276 | integrity sha512-BsV3iA3vMclMm/B1LYO0djBYCALr/UIvL6u9HGvM7QvpdtpQiAvskuS4PieVO/gtF9iCCBJLPqa0scwFIgvDyg== 277 | dependencies: 278 | "@confio/ics23" "^0.6.8" 279 | "@cosmjs/amino" "^0.29.0" 280 | "@cosmjs/encoding" "^0.29.0" 281 | "@cosmjs/math" "^0.29.0" 282 | "@cosmjs/proto-signing" "^0.29.0" 283 | "@cosmjs/stream" "^0.29.0" 284 | "@cosmjs/tendermint-rpc" "^0.29.0" 285 | "@cosmjs/utils" "^0.29.0" 286 | cosmjs-types "^0.5.0" 287 | long "^4.0.0" 288 | protobufjs "~6.11.3" 289 | xstream "^11.14.0" 290 | 291 | "@cosmjs/stream@0.28.13": 292 | version "0.28.13" 293 | resolved "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.28.13.tgz#1e79d1116fda1e63e5ecddbd9d803d403942b1fa" 294 | integrity sha512-AnjtfwT8NwPPkd3lhZhjOlOzT0Kn9bgEu2IPOZjQ1nmG2bplsr6TJmnwn0dJxHT7UGtex17h6whKB5N4wU37Wg== 295 | dependencies: 296 | xstream "^11.14.0" 297 | 298 | "@cosmjs/stream@^0.29.0": 299 | version "0.29.0" 300 | resolved "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.29.0.tgz#df2d7ea23293170bc192e91c0fa3e9f8d993b7cc" 301 | integrity sha512-KAJ9sNoXhF19wtkoJf3O2y4YXfklDZgmXhDotgAejLrw2ixoVfTodMHvnl6tpw3ZnmXKibTfUaNXWZD++sG6uQ== 302 | dependencies: 303 | xstream "^11.14.0" 304 | 305 | "@cosmjs/tendermint-rpc@0.28.13": 306 | version "0.28.13" 307 | resolved "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.28.13.tgz#0bf587ae66fa3f88319edbd258492d28e73f9f29" 308 | integrity sha512-GB+ZmfuJIGQm0hsRtLYjeR3lOxF7Z6XyCBR0cX5AAYOZzSEBJjevPgUHD6tLn8zIhvzxaW3/VKnMB+WmlxdH4w== 309 | dependencies: 310 | "@cosmjs/crypto" "0.28.13" 311 | "@cosmjs/encoding" "0.28.13" 312 | "@cosmjs/json-rpc" "0.28.13" 313 | "@cosmjs/math" "0.28.13" 314 | "@cosmjs/socket" "0.28.13" 315 | "@cosmjs/stream" "0.28.13" 316 | "@cosmjs/utils" "0.28.13" 317 | axios "^0.21.2" 318 | readonly-date "^1.0.0" 319 | xstream "^11.14.0" 320 | 321 | "@cosmjs/tendermint-rpc@^0.29.0": 322 | version "0.29.0" 323 | resolved "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.29.0.tgz#db71e743d2ee8dde706c09bc92ac47cc6197f672" 324 | integrity sha512-G+42oGh+tw8/KV0gLAGzNCTe/6mkf7VUE5noSTbsxbeliFR7Lt4i6H2aqvWzmlZFeRxunR7AsQr4wakvlVNWyg== 325 | dependencies: 326 | "@cosmjs/crypto" "^0.29.0" 327 | "@cosmjs/encoding" "^0.29.0" 328 | "@cosmjs/json-rpc" "^0.29.0" 329 | "@cosmjs/math" "^0.29.0" 330 | "@cosmjs/socket" "^0.29.0" 331 | "@cosmjs/stream" "^0.29.0" 332 | "@cosmjs/utils" "^0.29.0" 333 | axios "^0.21.2" 334 | readonly-date "^1.0.0" 335 | xstream "^11.14.0" 336 | 337 | "@cosmjs/utils@0.28.13": 338 | version "0.28.13" 339 | resolved "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.28.13.tgz#2fd2844ec832d7833811e2ae1691305d09791a08" 340 | integrity sha512-dVeMBiyg+46x7XBZEfJK8yTihphbCFpjVYmLJVqmTsHfJwymQ65cpyW/C+V/LgWARGK8hWQ/aX9HM5Ao8QmMSg== 341 | 342 | "@cosmjs/utils@^0.29.0": 343 | version "0.29.0" 344 | resolved "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.29.0.tgz#0a61e6d608e9f6f89a278cc71f4e7cee01199657" 345 | integrity sha512-NiJk3ISX+FU1cQcTTgmJcY84A8mV/p8L5CRewp/2jc/lUmo8j9lMGbX17U7NxVQ9RX5RmrwgdjYnBASzhRCVmA== 346 | 347 | "@hutson/parse-repository-url@^3.0.0": 348 | version "3.0.2" 349 | resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" 350 | integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== 351 | 352 | "@noble/hashes@^1", "@noble/hashes@^1.0.0": 353 | version "1.1.3" 354 | resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.3.tgz#360afc77610e0a61f3417e497dcf36862e4f8111" 355 | integrity sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A== 356 | 357 | "@osmonauts/helpers@^0.6.0": 358 | version "0.6.0" 359 | resolved "https://registry.npmjs.org/@osmonauts/helpers/-/helpers-0.6.0.tgz#86324110ba1ec76637836ef6ec12ce263e1a7a97" 360 | integrity sha512-l62tWR/0W4R+5wRvMeRK0zlaJ8WZhULKsQAZ7kNzggL0pbndIAV+0BJ/jEBbNletoeGtuV8rpi6Wo+w+RmtZGw== 361 | dependencies: 362 | "@babel/runtime" "^7.18.9" 363 | "@cosmjs/amino" "0.28.13" 364 | "@cosmjs/crypto" "0.28.13" 365 | "@cosmjs/proto-signing" "0.28.13" 366 | "@cosmjs/stargate" "0.28.13" 367 | cosmjs-types "0.5.1" 368 | long "^5.2.0" 369 | protobufjs "^6.11.3" 370 | 371 | "@osmonauts/lcd@^0.8.0": 372 | version "0.8.0" 373 | resolved "https://registry.npmjs.org/@osmonauts/lcd/-/lcd-0.8.0.tgz#fcabba93edadd23f73b2046a5cad897b420a9c84" 374 | integrity sha512-k7m2gAVnXc0H4m/eTq4z/8A6hFrr3MPS9wnLV4Xu9/K/WYltCnp2PpiObZm+feZUPK/svES6hxIQeO1bODLx8g== 375 | dependencies: 376 | "@babel/runtime" "^7.19.0" 377 | axios "0.27.2" 378 | 379 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 380 | version "1.1.2" 381 | resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 382 | integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== 383 | 384 | "@protobufjs/base64@^1.1.2": 385 | version "1.1.2" 386 | resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 387 | integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== 388 | 389 | "@protobufjs/codegen@^2.0.4": 390 | version "2.0.4" 391 | resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 392 | integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== 393 | 394 | "@protobufjs/eventemitter@^1.1.0": 395 | version "1.1.0" 396 | resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 397 | integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== 398 | 399 | "@protobufjs/fetch@^1.1.0": 400 | version "1.1.0" 401 | resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 402 | integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== 403 | dependencies: 404 | "@protobufjs/aspromise" "^1.1.1" 405 | "@protobufjs/inquire" "^1.1.0" 406 | 407 | "@protobufjs/float@^1.0.2": 408 | version "1.0.2" 409 | resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 410 | integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== 411 | 412 | "@protobufjs/inquire@^1.1.0": 413 | version "1.1.0" 414 | resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 415 | integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== 416 | 417 | "@protobufjs/path@^1.1.2": 418 | version "1.1.2" 419 | resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 420 | integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== 421 | 422 | "@protobufjs/pool@^1.1.0": 423 | version "1.1.0" 424 | resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 425 | integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== 426 | 427 | "@protobufjs/utf8@^1.1.0": 428 | version "1.1.0" 429 | resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 430 | integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== 431 | 432 | "@sei-js/core@^1.0.36": 433 | version "1.0.36" 434 | resolved "https://registry.npmjs.org/@sei-js/core/-/core-1.0.36.tgz#8618ad5cf3787029a3122a5cebfa56a8018bbaa8" 435 | integrity sha512-QE8qBjincIUauStIRhzSAd74u1oK6GDSee2abTQn46XgbKQk5tejH+BCZnoH6AgMxBCTzin/7dij3gWgejH2iA== 436 | dependencies: 437 | "@cosmjs/stargate" "^0.29.0" 438 | "@sei-js/proto" "^0.0.1" 439 | 440 | "@sei-js/proto@^0.0.1": 441 | version "0.0.1" 442 | resolved "https://registry.npmjs.org/@sei-js/proto/-/proto-0.0.1.tgz#fcdae68868aa38aa5806a1dd136c7346e4d1da0a" 443 | integrity sha512-HvbIXYnjTc1Xzi3lsIND+tT8Mvh7kBtFR1eeOoxworuyTdmerukPJ4TH7Tc3qsAE5LRJ+DIPSkBMpU3bPV2xPA== 444 | dependencies: 445 | "@babel/runtime" "^7.18.9" 446 | "@cosmjs/amino" "0.29.0" 447 | "@cosmjs/proto-signing" "0.29.0" 448 | "@cosmjs/stargate" "0.29.0" 449 | "@cosmjs/tendermint-rpc" "^0.29.0" 450 | "@osmonauts/helpers" "^0.6.0" 451 | "@osmonauts/lcd" "^0.8.0" 452 | protobufjs "^6.11.2" 453 | 454 | "@types/long@^4.0.1": 455 | version "4.0.2" 456 | resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" 457 | integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== 458 | 459 | "@types/minimist@^1.2.0": 460 | version "1.2.2" 461 | resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" 462 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== 463 | 464 | "@types/node@>=13.7.0": 465 | version "18.8.2" 466 | resolved "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz#17d42c6322d917764dd3d2d3a10d7884925de067" 467 | integrity sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA== 468 | 469 | "@types/normalize-package-data@^2.4.0": 470 | version "2.4.1" 471 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 472 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 473 | 474 | "@types/prop-types@*": 475 | version "15.7.5" 476 | resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" 477 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 478 | 479 | "@types/react@^17.0.1": 480 | version "17.0.50" 481 | resolved "https://registry.npmjs.org/@types/react/-/react-17.0.50.tgz" 482 | integrity sha512-ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA== 483 | dependencies: 484 | "@types/prop-types" "*" 485 | "@types/scheduler" "*" 486 | csstype "^3.0.2" 487 | 488 | "@types/scheduler@*": 489 | version "0.16.2" 490 | resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" 491 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 492 | 493 | JSONStream@^1.0.4: 494 | version "1.3.5" 495 | resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 496 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 497 | dependencies: 498 | jsonparse "^1.2.0" 499 | through ">=2.2.7 <3" 500 | 501 | add-stream@^1.0.0: 502 | version "1.0.0" 503 | resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 504 | integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== 505 | 506 | ansi-regex@^5.0.1: 507 | version "5.0.1" 508 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 509 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 510 | 511 | ansi-styles@^3.2.1: 512 | version "3.2.1" 513 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 514 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 515 | dependencies: 516 | color-convert "^1.9.0" 517 | 518 | ansi-styles@^4.0.0: 519 | version "4.3.0" 520 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 521 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 522 | dependencies: 523 | color-convert "^2.0.1" 524 | 525 | array-ify@^1.0.0: 526 | version "1.0.0" 527 | resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 528 | integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== 529 | 530 | arrify@^1.0.1: 531 | version "1.0.1" 532 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 533 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== 534 | 535 | asynckit@^0.4.0: 536 | version "0.4.0" 537 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 538 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 539 | 540 | axios@0.27.2: 541 | version "0.27.2" 542 | resolved "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" 543 | integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== 544 | dependencies: 545 | follow-redirects "^1.14.9" 546 | form-data "^4.0.0" 547 | 548 | axios@^0.21.2: 549 | version "0.21.4" 550 | resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" 551 | integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== 552 | dependencies: 553 | follow-redirects "^1.14.0" 554 | 555 | balanced-match@^1.0.0: 556 | version "1.0.2" 557 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 558 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 559 | 560 | base64-js@^1.3.0: 561 | version "1.5.1" 562 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 563 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 564 | 565 | bech32@^1.1.4: 566 | version "1.1.4" 567 | resolved "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 568 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 569 | 570 | bn.js@^4.11.9: 571 | version "4.12.0" 572 | resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 573 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 574 | 575 | bn.js@^5.2.0: 576 | version "5.2.1" 577 | resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 578 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 579 | 580 | brace-expansion@^1.1.7: 581 | version "1.1.11" 582 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 583 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 584 | dependencies: 585 | balanced-match "^1.0.0" 586 | concat-map "0.0.1" 587 | 588 | brorand@^1.1.0: 589 | version "1.1.0" 590 | resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 591 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 592 | 593 | buffer-from@^1.0.0: 594 | version "1.1.2" 595 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 596 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 597 | 598 | camelcase-keys@^6.2.2: 599 | version "6.2.2" 600 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 601 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 602 | dependencies: 603 | camelcase "^5.3.1" 604 | map-obj "^4.0.0" 605 | quick-lru "^4.0.1" 606 | 607 | camelcase@^5.3.1: 608 | version "5.3.1" 609 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 610 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 611 | 612 | chalk@^2.0.0, chalk@^2.4.2: 613 | version "2.4.2" 614 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 615 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 616 | dependencies: 617 | ansi-styles "^3.2.1" 618 | escape-string-regexp "^1.0.5" 619 | supports-color "^5.3.0" 620 | 621 | cliui@^7.0.2: 622 | version "7.0.4" 623 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 624 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 625 | dependencies: 626 | string-width "^4.2.0" 627 | strip-ansi "^6.0.0" 628 | wrap-ansi "^7.0.0" 629 | 630 | color-convert@^1.9.0: 631 | version "1.9.3" 632 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 633 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 634 | dependencies: 635 | color-name "1.1.3" 636 | 637 | color-convert@^2.0.1: 638 | version "2.0.1" 639 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 640 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 641 | dependencies: 642 | color-name "~1.1.4" 643 | 644 | color-name@1.1.3: 645 | version "1.1.3" 646 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 647 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 648 | 649 | color-name@~1.1.4: 650 | version "1.1.4" 651 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 652 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 653 | 654 | combined-stream@^1.0.8: 655 | version "1.0.8" 656 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 657 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 658 | dependencies: 659 | delayed-stream "~1.0.0" 660 | 661 | compare-func@^2.0.0: 662 | version "2.0.0" 663 | resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" 664 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== 665 | dependencies: 666 | array-ify "^1.0.0" 667 | dot-prop "^5.1.0" 668 | 669 | concat-map@0.0.1: 670 | version "0.0.1" 671 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 672 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 673 | 674 | concat-stream@^2.0.0: 675 | version "2.0.0" 676 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" 677 | integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== 678 | dependencies: 679 | buffer-from "^1.0.0" 680 | inherits "^2.0.3" 681 | readable-stream "^3.0.2" 682 | typedarray "^0.0.6" 683 | 684 | conventional-changelog-angular@^5.0.12: 685 | version "5.0.13" 686 | resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" 687 | integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== 688 | dependencies: 689 | compare-func "^2.0.0" 690 | q "^1.5.1" 691 | 692 | conventional-changelog-atom@^2.0.8: 693 | version "2.0.8" 694 | resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" 695 | integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== 696 | dependencies: 697 | q "^1.5.1" 698 | 699 | conventional-changelog-codemirror@^2.0.8: 700 | version "2.0.8" 701 | resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" 702 | integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== 703 | dependencies: 704 | q "^1.5.1" 705 | 706 | conventional-changelog-config-spec@2.1.0: 707 | version "2.1.0" 708 | resolved "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz#874a635287ef8b581fd8558532bf655d4fb59f2d" 709 | integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ== 710 | 711 | conventional-changelog-conventionalcommits@4.6.3, conventional-changelog-conventionalcommits@^4.5.0: 712 | version "4.6.3" 713 | resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz#0765490f56424b46f6cb4db9135902d6e5a36dc2" 714 | integrity sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g== 715 | dependencies: 716 | compare-func "^2.0.0" 717 | lodash "^4.17.15" 718 | q "^1.5.1" 719 | 720 | conventional-changelog-core@^4.2.1: 721 | version "4.2.4" 722 | resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" 723 | integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== 724 | dependencies: 725 | add-stream "^1.0.0" 726 | conventional-changelog-writer "^5.0.0" 727 | conventional-commits-parser "^3.2.0" 728 | dateformat "^3.0.0" 729 | get-pkg-repo "^4.0.0" 730 | git-raw-commits "^2.0.8" 731 | git-remote-origin-url "^2.0.0" 732 | git-semver-tags "^4.1.1" 733 | lodash "^4.17.15" 734 | normalize-package-data "^3.0.0" 735 | q "^1.5.1" 736 | read-pkg "^3.0.0" 737 | read-pkg-up "^3.0.0" 738 | through2 "^4.0.0" 739 | 740 | conventional-changelog-ember@^2.0.9: 741 | version "2.0.9" 742 | resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" 743 | integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== 744 | dependencies: 745 | q "^1.5.1" 746 | 747 | conventional-changelog-eslint@^3.0.9: 748 | version "3.0.9" 749 | resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" 750 | integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== 751 | dependencies: 752 | q "^1.5.1" 753 | 754 | conventional-changelog-express@^2.0.6: 755 | version "2.0.6" 756 | resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" 757 | integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== 758 | dependencies: 759 | q "^1.5.1" 760 | 761 | conventional-changelog-jquery@^3.0.11: 762 | version "3.0.11" 763 | resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" 764 | integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== 765 | dependencies: 766 | q "^1.5.1" 767 | 768 | conventional-changelog-jshint@^2.0.9: 769 | version "2.0.9" 770 | resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" 771 | integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== 772 | dependencies: 773 | compare-func "^2.0.0" 774 | q "^1.5.1" 775 | 776 | conventional-changelog-preset-loader@^2.3.4: 777 | version "2.3.4" 778 | resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" 779 | integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== 780 | 781 | conventional-changelog-writer@^5.0.0: 782 | version "5.0.1" 783 | resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" 784 | integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== 785 | dependencies: 786 | conventional-commits-filter "^2.0.7" 787 | dateformat "^3.0.0" 788 | handlebars "^4.7.7" 789 | json-stringify-safe "^5.0.1" 790 | lodash "^4.17.15" 791 | meow "^8.0.0" 792 | semver "^6.0.0" 793 | split "^1.0.0" 794 | through2 "^4.0.0" 795 | 796 | conventional-changelog@3.1.25: 797 | version "3.1.25" 798 | resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz#3e227a37d15684f5aa1fb52222a6e9e2536ccaff" 799 | integrity sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ== 800 | dependencies: 801 | conventional-changelog-angular "^5.0.12" 802 | conventional-changelog-atom "^2.0.8" 803 | conventional-changelog-codemirror "^2.0.8" 804 | conventional-changelog-conventionalcommits "^4.5.0" 805 | conventional-changelog-core "^4.2.1" 806 | conventional-changelog-ember "^2.0.9" 807 | conventional-changelog-eslint "^3.0.9" 808 | conventional-changelog-express "^2.0.6" 809 | conventional-changelog-jquery "^3.0.11" 810 | conventional-changelog-jshint "^2.0.9" 811 | conventional-changelog-preset-loader "^2.3.4" 812 | 813 | conventional-commits-filter@^2.0.7: 814 | version "2.0.7" 815 | resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" 816 | integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== 817 | dependencies: 818 | lodash.ismatch "^4.4.0" 819 | modify-values "^1.0.0" 820 | 821 | conventional-commits-parser@^3.2.0: 822 | version "3.2.4" 823 | resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" 824 | integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== 825 | dependencies: 826 | JSONStream "^1.0.4" 827 | is-text-path "^1.0.1" 828 | lodash "^4.17.15" 829 | meow "^8.0.0" 830 | split2 "^3.0.0" 831 | through2 "^4.0.0" 832 | 833 | conventional-recommended-bump@6.1.0: 834 | version "6.1.0" 835 | resolved "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz#cfa623285d1de554012f2ffde70d9c8a22231f55" 836 | integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw== 837 | dependencies: 838 | concat-stream "^2.0.0" 839 | conventional-changelog-preset-loader "^2.3.4" 840 | conventional-commits-filter "^2.0.7" 841 | conventional-commits-parser "^3.2.0" 842 | git-raw-commits "^2.0.8" 843 | git-semver-tags "^4.1.1" 844 | meow "^8.0.0" 845 | q "^1.5.1" 846 | 847 | core-util-is@~1.0.0: 848 | version "1.0.3" 849 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 850 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 851 | 852 | cosmjs-types@0.5.1, cosmjs-types@^0.5.0: 853 | version "0.5.1" 854 | resolved "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.5.1.tgz#f9bc35e78c32b687fb6018dc573eb454b3ae2587" 855 | integrity sha512-NcC58xUIVLlKdIimWWQAmSlmCjiMrJnuHf4i3LiD8PCextfHR0fT3V5/WlXZZreyMgdmh6ML1zPUfGTbbo3Z5g== 856 | dependencies: 857 | long "^4.0.0" 858 | protobufjs "~6.11.2" 859 | 860 | cosmjs-types@^0.4.0: 861 | version "0.4.1" 862 | resolved "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.4.1.tgz#3b2a53ba60d33159dd075596ce8267cfa7027063" 863 | integrity sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog== 864 | dependencies: 865 | long "^4.0.0" 866 | protobufjs "~6.11.2" 867 | 868 | csstype@^3.0.2: 869 | version "3.1.1" 870 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" 871 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 872 | 873 | dargs@^7.0.0: 874 | version "7.0.0" 875 | resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" 876 | integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== 877 | 878 | dateformat@^3.0.0: 879 | version "3.0.3" 880 | resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 881 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== 882 | 883 | decamelize-keys@^1.1.0: 884 | version "1.1.0" 885 | resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 886 | integrity sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg== 887 | dependencies: 888 | decamelize "^1.1.0" 889 | map-obj "^1.0.0" 890 | 891 | decamelize@^1.1.0: 892 | version "1.2.0" 893 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 894 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 895 | 896 | define-properties@^1.1.3: 897 | version "1.1.4" 898 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 899 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 900 | dependencies: 901 | has-property-descriptors "^1.0.0" 902 | object-keys "^1.1.1" 903 | 904 | delayed-stream@~1.0.0: 905 | version "1.0.0" 906 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 907 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 908 | 909 | detect-indent@^6.0.0: 910 | version "6.1.0" 911 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" 912 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== 913 | 914 | detect-newline@^3.1.0: 915 | version "3.1.0" 916 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 917 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 918 | 919 | dot-prop@^5.1.0: 920 | version "5.3.0" 921 | resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 922 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 923 | dependencies: 924 | is-obj "^2.0.0" 925 | 926 | dotgitignore@^2.1.0: 927 | version "2.1.0" 928 | resolved "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz#a4b15a4e4ef3cf383598aaf1dfa4a04bcc089b7b" 929 | integrity sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA== 930 | dependencies: 931 | find-up "^3.0.0" 932 | minimatch "^3.0.4" 933 | 934 | elliptic@^6.5.3: 935 | version "6.5.4" 936 | resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 937 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 938 | dependencies: 939 | bn.js "^4.11.9" 940 | brorand "^1.1.0" 941 | hash.js "^1.0.0" 942 | hmac-drbg "^1.0.1" 943 | inherits "^2.0.4" 944 | minimalistic-assert "^1.0.1" 945 | minimalistic-crypto-utils "^1.0.1" 946 | 947 | emoji-regex@^8.0.0: 948 | version "8.0.0" 949 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 950 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 951 | 952 | error-ex@^1.3.1: 953 | version "1.3.2" 954 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 955 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 956 | dependencies: 957 | is-arrayish "^0.2.1" 958 | 959 | escalade@^3.1.1: 960 | version "3.1.1" 961 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 962 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 963 | 964 | escape-string-regexp@^1.0.5: 965 | version "1.0.5" 966 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 967 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 968 | 969 | figures@^3.1.0: 970 | version "3.2.0" 971 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 972 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 973 | dependencies: 974 | escape-string-regexp "^1.0.5" 975 | 976 | find-up@^2.0.0: 977 | version "2.1.0" 978 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 979 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== 980 | dependencies: 981 | locate-path "^2.0.0" 982 | 983 | find-up@^3.0.0: 984 | version "3.0.0" 985 | resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 986 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 987 | dependencies: 988 | locate-path "^3.0.0" 989 | 990 | find-up@^4.1.0: 991 | version "4.1.0" 992 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 993 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 994 | dependencies: 995 | locate-path "^5.0.0" 996 | path-exists "^4.0.0" 997 | 998 | find-up@^5.0.0: 999 | version "5.0.0" 1000 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1001 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1002 | dependencies: 1003 | locate-path "^6.0.0" 1004 | path-exists "^4.0.0" 1005 | 1006 | follow-redirects@^1.14.0, follow-redirects@^1.14.9: 1007 | version "1.15.2" 1008 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" 1009 | integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 1010 | 1011 | form-data@^4.0.0: 1012 | version "4.0.0" 1013 | resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" 1014 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 1015 | dependencies: 1016 | asynckit "^0.4.0" 1017 | combined-stream "^1.0.8" 1018 | mime-types "^2.1.12" 1019 | 1020 | fs.realpath@^1.0.0: 1021 | version "1.0.0" 1022 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1023 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1024 | 1025 | function-bind@^1.1.1: 1026 | version "1.1.1" 1027 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1028 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1029 | 1030 | get-caller-file@^2.0.5: 1031 | version "2.0.5" 1032 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1033 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1034 | 1035 | get-intrinsic@^1.1.1: 1036 | version "1.1.3" 1037 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 1038 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1039 | dependencies: 1040 | function-bind "^1.1.1" 1041 | has "^1.0.3" 1042 | has-symbols "^1.0.3" 1043 | 1044 | get-pkg-repo@^4.0.0: 1045 | version "4.2.1" 1046 | resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" 1047 | integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== 1048 | dependencies: 1049 | "@hutson/parse-repository-url" "^3.0.0" 1050 | hosted-git-info "^4.0.0" 1051 | through2 "^2.0.0" 1052 | yargs "^16.2.0" 1053 | 1054 | git-raw-commits@^2.0.8: 1055 | version "2.0.11" 1056 | resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" 1057 | integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== 1058 | dependencies: 1059 | dargs "^7.0.0" 1060 | lodash "^4.17.15" 1061 | meow "^8.0.0" 1062 | split2 "^3.0.0" 1063 | through2 "^4.0.0" 1064 | 1065 | git-remote-origin-url@^2.0.0: 1066 | version "2.0.0" 1067 | resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 1068 | integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== 1069 | dependencies: 1070 | gitconfiglocal "^1.0.0" 1071 | pify "^2.3.0" 1072 | 1073 | git-semver-tags@^4.0.0, git-semver-tags@^4.1.1: 1074 | version "4.1.1" 1075 | resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" 1076 | integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== 1077 | dependencies: 1078 | meow "^8.0.0" 1079 | semver "^6.0.0" 1080 | 1081 | gitconfiglocal@^1.0.0: 1082 | version "1.0.0" 1083 | resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 1084 | integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== 1085 | dependencies: 1086 | ini "^1.3.2" 1087 | 1088 | glob@^7.1.3: 1089 | version "7.2.3" 1090 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1091 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1092 | dependencies: 1093 | fs.realpath "^1.0.0" 1094 | inflight "^1.0.4" 1095 | inherits "2" 1096 | minimatch "^3.1.1" 1097 | once "^1.3.0" 1098 | path-is-absolute "^1.0.0" 1099 | 1100 | globalthis@^1.0.1: 1101 | version "1.0.3" 1102 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1103 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1104 | dependencies: 1105 | define-properties "^1.1.3" 1106 | 1107 | graceful-fs@^4.1.2: 1108 | version "4.2.10" 1109 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1110 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1111 | 1112 | hamt_plus@1.0.2: 1113 | version "1.0.2" 1114 | resolved "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz#e21c252968c7e33b20f6a1b094cd85787a265601" 1115 | integrity sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA== 1116 | 1117 | handlebars@^4.7.7: 1118 | version "4.7.7" 1119 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1120 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 1121 | dependencies: 1122 | minimist "^1.2.5" 1123 | neo-async "^2.6.0" 1124 | source-map "^0.6.1" 1125 | wordwrap "^1.0.0" 1126 | optionalDependencies: 1127 | uglify-js "^3.1.4" 1128 | 1129 | hard-rejection@^2.1.0: 1130 | version "2.1.0" 1131 | resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 1132 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 1133 | 1134 | has-flag@^3.0.0: 1135 | version "3.0.0" 1136 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1137 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1138 | 1139 | has-property-descriptors@^1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1142 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1143 | dependencies: 1144 | get-intrinsic "^1.1.1" 1145 | 1146 | has-symbols@^1.0.3: 1147 | version "1.0.3" 1148 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1149 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1150 | 1151 | has@^1.0.3: 1152 | version "1.0.3" 1153 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1154 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1155 | dependencies: 1156 | function-bind "^1.1.1" 1157 | 1158 | hash.js@^1.0.0, hash.js@^1.0.3: 1159 | version "1.1.7" 1160 | resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1161 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1162 | dependencies: 1163 | inherits "^2.0.3" 1164 | minimalistic-assert "^1.0.1" 1165 | 1166 | hmac-drbg@^1.0.1: 1167 | version "1.0.1" 1168 | resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1169 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 1170 | dependencies: 1171 | hash.js "^1.0.3" 1172 | minimalistic-assert "^1.0.0" 1173 | minimalistic-crypto-utils "^1.0.1" 1174 | 1175 | hosted-git-info@^2.1.4: 1176 | version "2.8.9" 1177 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1178 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1179 | 1180 | hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: 1181 | version "4.1.0" 1182 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 1183 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 1184 | dependencies: 1185 | lru-cache "^6.0.0" 1186 | 1187 | indent-string@^4.0.0: 1188 | version "4.0.0" 1189 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1190 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1191 | 1192 | inflight@^1.0.4: 1193 | version "1.0.6" 1194 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1195 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1196 | dependencies: 1197 | once "^1.3.0" 1198 | wrappy "1" 1199 | 1200 | inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 1201 | version "2.0.4" 1202 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1203 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1204 | 1205 | ini@^1.3.2: 1206 | version "1.3.8" 1207 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1208 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1209 | 1210 | is-arrayish@^0.2.1: 1211 | version "0.2.1" 1212 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1213 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1214 | 1215 | is-core-module@^2.5.0, is-core-module@^2.9.0: 1216 | version "2.11.0" 1217 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1218 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1219 | dependencies: 1220 | has "^1.0.3" 1221 | 1222 | is-fullwidth-code-point@^3.0.0: 1223 | version "3.0.0" 1224 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1225 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1226 | 1227 | is-obj@^2.0.0: 1228 | version "2.0.0" 1229 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1230 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1231 | 1232 | is-plain-obj@^1.1.0: 1233 | version "1.1.0" 1234 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1235 | integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== 1236 | 1237 | is-text-path@^1.0.1: 1238 | version "1.0.1" 1239 | resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1240 | integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== 1241 | dependencies: 1242 | text-extensions "^1.0.0" 1243 | 1244 | isarray@~1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1247 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1248 | 1249 | isomorphic-ws@^4.0.1: 1250 | version "4.0.1" 1251 | resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" 1252 | integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== 1253 | 1254 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1255 | version "4.0.0" 1256 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1257 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1258 | 1259 | json-parse-better-errors@^1.0.1: 1260 | version "1.0.2" 1261 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1262 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1263 | 1264 | json-parse-even-better-errors@^2.3.0: 1265 | version "2.3.1" 1266 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1267 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1268 | 1269 | json-stringify-safe@^5.0.1: 1270 | version "5.0.1" 1271 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1272 | integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== 1273 | 1274 | jsonparse@^1.2.0: 1275 | version "1.3.1" 1276 | resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1277 | integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== 1278 | 1279 | kind-of@^6.0.3: 1280 | version "6.0.3" 1281 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1282 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1283 | 1284 | libsodium-wrappers@^0.7.6: 1285 | version "0.7.10" 1286 | resolved "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.10.tgz#13ced44cacb0fc44d6ac9ce67d725956089ce733" 1287 | integrity sha512-pO3F1Q9NPLB/MWIhehim42b/Fwb30JNScCNh8TcQ/kIc+qGLQch8ag8wb0keK3EP5kbGakk1H8Wwo7v+36rNQg== 1288 | dependencies: 1289 | libsodium "^0.7.0" 1290 | 1291 | libsodium@^0.7.0: 1292 | version "0.7.10" 1293 | resolved "https://registry.npmjs.org/libsodium/-/libsodium-0.7.10.tgz#c2429a7e4c0836f879d701fec2c8a208af024159" 1294 | integrity sha512-eY+z7hDrDKxkAK+QKZVNv92A5KYkxfvIshtBJkmg5TSiCnYqZP3i9OO9whE79Pwgm4jGaoHgkM4ao/b9Cyu4zQ== 1295 | 1296 | lines-and-columns@^1.1.6: 1297 | version "1.2.4" 1298 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1299 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1300 | 1301 | load-json-file@^4.0.0: 1302 | version "4.0.0" 1303 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1304 | integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== 1305 | dependencies: 1306 | graceful-fs "^4.1.2" 1307 | parse-json "^4.0.0" 1308 | pify "^3.0.0" 1309 | strip-bom "^3.0.0" 1310 | 1311 | locate-path@^2.0.0: 1312 | version "2.0.0" 1313 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1314 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== 1315 | dependencies: 1316 | p-locate "^2.0.0" 1317 | path-exists "^3.0.0" 1318 | 1319 | locate-path@^3.0.0: 1320 | version "3.0.0" 1321 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1322 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1323 | dependencies: 1324 | p-locate "^3.0.0" 1325 | path-exists "^3.0.0" 1326 | 1327 | locate-path@^5.0.0: 1328 | version "5.0.0" 1329 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1330 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1331 | dependencies: 1332 | p-locate "^4.1.0" 1333 | 1334 | locate-path@^6.0.0: 1335 | version "6.0.0" 1336 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1337 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1338 | dependencies: 1339 | p-locate "^5.0.0" 1340 | 1341 | lodash.ismatch@^4.4.0: 1342 | version "4.4.0" 1343 | resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" 1344 | integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== 1345 | 1346 | lodash@^4.17.15: 1347 | version "4.17.21" 1348 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1349 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1350 | 1351 | long@^4.0.0: 1352 | version "4.0.0" 1353 | resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1354 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 1355 | 1356 | long@^5.2.0: 1357 | version "5.2.0" 1358 | resolved "https://registry.npmjs.org/long/-/long-5.2.0.tgz#2696dadf4b4da2ce3f6f6b89186085d94d52fd61" 1359 | integrity sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w== 1360 | 1361 | loose-envify@^1.1.0: 1362 | version "1.4.0" 1363 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 1364 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1365 | dependencies: 1366 | js-tokens "^3.0.0 || ^4.0.0" 1367 | 1368 | lru-cache@^6.0.0: 1369 | version "6.0.0" 1370 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1371 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1372 | dependencies: 1373 | yallist "^4.0.0" 1374 | 1375 | map-obj@^1.0.0: 1376 | version "1.0.1" 1377 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1378 | integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== 1379 | 1380 | map-obj@^4.0.0: 1381 | version "4.3.0" 1382 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 1383 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1384 | 1385 | meow@^8.0.0: 1386 | version "8.1.2" 1387 | resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" 1388 | integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== 1389 | dependencies: 1390 | "@types/minimist" "^1.2.0" 1391 | camelcase-keys "^6.2.2" 1392 | decamelize-keys "^1.1.0" 1393 | hard-rejection "^2.1.0" 1394 | minimist-options "4.1.0" 1395 | normalize-package-data "^3.0.0" 1396 | read-pkg-up "^7.0.1" 1397 | redent "^3.0.0" 1398 | trim-newlines "^3.0.0" 1399 | type-fest "^0.18.0" 1400 | yargs-parser "^20.2.3" 1401 | 1402 | mime-db@1.52.0: 1403 | version "1.52.0" 1404 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1405 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1406 | 1407 | mime-types@^2.1.12: 1408 | version "2.1.35" 1409 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1410 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1411 | dependencies: 1412 | mime-db "1.52.0" 1413 | 1414 | min-indent@^1.0.0: 1415 | version "1.0.1" 1416 | resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1417 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1418 | 1419 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1420 | version "1.0.1" 1421 | resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1422 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 1423 | 1424 | minimalistic-crypto-utils@^1.0.1: 1425 | version "1.0.1" 1426 | resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1427 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 1428 | 1429 | minimatch@^3.0.4, minimatch@^3.1.1: 1430 | version "3.1.2" 1431 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1432 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1433 | dependencies: 1434 | brace-expansion "^1.1.7" 1435 | 1436 | minimist-options@4.1.0: 1437 | version "4.1.0" 1438 | resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1439 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1440 | dependencies: 1441 | arrify "^1.0.1" 1442 | is-plain-obj "^1.1.0" 1443 | kind-of "^6.0.3" 1444 | 1445 | minimist@^1.2.5: 1446 | version "1.2.7" 1447 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1448 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1449 | 1450 | modify-values@^1.0.0: 1451 | version "1.0.1" 1452 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 1453 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== 1454 | 1455 | neo-async@^2.6.0: 1456 | version "2.6.2" 1457 | resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1458 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1459 | 1460 | normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 1461 | version "2.5.0" 1462 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1463 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1464 | dependencies: 1465 | hosted-git-info "^2.1.4" 1466 | resolve "^1.10.0" 1467 | semver "2 || 3 || 4 || 5" 1468 | validate-npm-package-license "^3.0.1" 1469 | 1470 | normalize-package-data@^3.0.0: 1471 | version "3.0.3" 1472 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" 1473 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 1474 | dependencies: 1475 | hosted-git-info "^4.0.1" 1476 | is-core-module "^2.5.0" 1477 | semver "^7.3.4" 1478 | validate-npm-package-license "^3.0.1" 1479 | 1480 | object-assign@^4.1.1: 1481 | version "4.1.1" 1482 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1483 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1484 | 1485 | object-keys@^1.1.1: 1486 | version "1.1.1" 1487 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1488 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1489 | 1490 | once@^1.3.0: 1491 | version "1.4.0" 1492 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1493 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1494 | dependencies: 1495 | wrappy "1" 1496 | 1497 | p-limit@^1.1.0: 1498 | version "1.3.0" 1499 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1500 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1501 | dependencies: 1502 | p-try "^1.0.0" 1503 | 1504 | p-limit@^2.0.0, p-limit@^2.2.0: 1505 | version "2.3.0" 1506 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1507 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1508 | dependencies: 1509 | p-try "^2.0.0" 1510 | 1511 | p-limit@^3.0.2: 1512 | version "3.1.0" 1513 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1514 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1515 | dependencies: 1516 | yocto-queue "^0.1.0" 1517 | 1518 | p-locate@^2.0.0: 1519 | version "2.0.0" 1520 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1521 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== 1522 | dependencies: 1523 | p-limit "^1.1.0" 1524 | 1525 | p-locate@^3.0.0: 1526 | version "3.0.0" 1527 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1528 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1529 | dependencies: 1530 | p-limit "^2.0.0" 1531 | 1532 | p-locate@^4.1.0: 1533 | version "4.1.0" 1534 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1535 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1536 | dependencies: 1537 | p-limit "^2.2.0" 1538 | 1539 | p-locate@^5.0.0: 1540 | version "5.0.0" 1541 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1542 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1543 | dependencies: 1544 | p-limit "^3.0.2" 1545 | 1546 | p-try@^1.0.0: 1547 | version "1.0.0" 1548 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1549 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== 1550 | 1551 | p-try@^2.0.0: 1552 | version "2.2.0" 1553 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1554 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1555 | 1556 | parse-json@^4.0.0: 1557 | version "4.0.0" 1558 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1559 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== 1560 | dependencies: 1561 | error-ex "^1.3.1" 1562 | json-parse-better-errors "^1.0.1" 1563 | 1564 | parse-json@^5.0.0: 1565 | version "5.2.0" 1566 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1567 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1568 | dependencies: 1569 | "@babel/code-frame" "^7.0.0" 1570 | error-ex "^1.3.1" 1571 | json-parse-even-better-errors "^2.3.0" 1572 | lines-and-columns "^1.1.6" 1573 | 1574 | path-exists@^3.0.0: 1575 | version "3.0.0" 1576 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1577 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 1578 | 1579 | path-exists@^4.0.0: 1580 | version "4.0.0" 1581 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1582 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1583 | 1584 | path-is-absolute@^1.0.0: 1585 | version "1.0.1" 1586 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1587 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1588 | 1589 | path-parse@^1.0.7: 1590 | version "1.0.7" 1591 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1592 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1593 | 1594 | path-type@^3.0.0: 1595 | version "3.0.0" 1596 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1597 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1598 | dependencies: 1599 | pify "^3.0.0" 1600 | 1601 | pify@^2.3.0: 1602 | version "2.3.0" 1603 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1604 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1605 | 1606 | pify@^3.0.0: 1607 | version "3.0.0" 1608 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1609 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== 1610 | 1611 | prettier@^2.7.1: 1612 | version "2.7.1" 1613 | resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 1614 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 1615 | 1616 | process-nextick-args@~2.0.0: 1617 | version "2.0.1" 1618 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1619 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1620 | 1621 | protobufjs@^6.11.2, protobufjs@^6.11.3, protobufjs@^6.8.8, protobufjs@~6.11.2, protobufjs@~6.11.3: 1622 | version "6.11.3" 1623 | resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" 1624 | integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== 1625 | dependencies: 1626 | "@protobufjs/aspromise" "^1.1.2" 1627 | "@protobufjs/base64" "^1.1.2" 1628 | "@protobufjs/codegen" "^2.0.4" 1629 | "@protobufjs/eventemitter" "^1.1.0" 1630 | "@protobufjs/fetch" "^1.1.0" 1631 | "@protobufjs/float" "^1.0.2" 1632 | "@protobufjs/inquire" "^1.1.0" 1633 | "@protobufjs/path" "^1.1.2" 1634 | "@protobufjs/pool" "^1.1.0" 1635 | "@protobufjs/utf8" "^1.1.0" 1636 | "@types/long" "^4.0.1" 1637 | "@types/node" ">=13.7.0" 1638 | long "^4.0.0" 1639 | 1640 | q@^1.5.1: 1641 | version "1.5.1" 1642 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1643 | integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== 1644 | 1645 | quick-lru@^4.0.1: 1646 | version "4.0.1" 1647 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 1648 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 1649 | 1650 | react@^17.0.1: 1651 | version "17.0.2" 1652 | resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" 1653 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1654 | dependencies: 1655 | loose-envify "^1.1.0" 1656 | object-assign "^4.1.1" 1657 | 1658 | read-pkg-up@^3.0.0: 1659 | version "3.0.0" 1660 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1661 | integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== 1662 | dependencies: 1663 | find-up "^2.0.0" 1664 | read-pkg "^3.0.0" 1665 | 1666 | read-pkg-up@^7.0.1: 1667 | version "7.0.1" 1668 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 1669 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 1670 | dependencies: 1671 | find-up "^4.1.0" 1672 | read-pkg "^5.2.0" 1673 | type-fest "^0.8.1" 1674 | 1675 | read-pkg@^3.0.0: 1676 | version "3.0.0" 1677 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1678 | integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== 1679 | dependencies: 1680 | load-json-file "^4.0.0" 1681 | normalize-package-data "^2.3.2" 1682 | path-type "^3.0.0" 1683 | 1684 | read-pkg@^5.2.0: 1685 | version "5.2.0" 1686 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1687 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1688 | dependencies: 1689 | "@types/normalize-package-data" "^2.4.0" 1690 | normalize-package-data "^2.5.0" 1691 | parse-json "^5.0.0" 1692 | type-fest "^0.6.0" 1693 | 1694 | readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2: 1695 | version "3.6.0" 1696 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1697 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1698 | dependencies: 1699 | inherits "^2.0.3" 1700 | string_decoder "^1.1.1" 1701 | util-deprecate "^1.0.1" 1702 | 1703 | readable-stream@~2.3.6: 1704 | version "2.3.7" 1705 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1706 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1707 | dependencies: 1708 | core-util-is "~1.0.0" 1709 | inherits "~2.0.3" 1710 | isarray "~1.0.0" 1711 | process-nextick-args "~2.0.0" 1712 | safe-buffer "~5.1.1" 1713 | string_decoder "~1.1.1" 1714 | util-deprecate "~1.0.1" 1715 | 1716 | readonly-date@^1.0.0: 1717 | version "1.0.0" 1718 | resolved "https://registry.npmjs.org/readonly-date/-/readonly-date-1.0.0.tgz#5af785464d8c7d7c40b9d738cbde8c646f97dcd9" 1719 | integrity sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ== 1720 | 1721 | recoil@^0.7.6: 1722 | version "0.7.6" 1723 | resolved "https://registry.npmjs.org/recoil/-/recoil-0.7.6.tgz#75297ecd70bbfeeb72e861aa6141a86bb6dfcd5e" 1724 | integrity sha512-hsBEw7jFdpBCY/tu2GweiyaqHKxVj6EqF2/SfrglbKvJHhpN57SANWvPW+gE90i3Awi+A5gssOd3u+vWlT+g7g== 1725 | dependencies: 1726 | hamt_plus "1.0.2" 1727 | 1728 | redent@^3.0.0: 1729 | version "3.0.0" 1730 | resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 1731 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 1732 | dependencies: 1733 | indent-string "^4.0.0" 1734 | strip-indent "^3.0.0" 1735 | 1736 | regenerator-runtime@^0.13.4: 1737 | version "0.13.10" 1738 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" 1739 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== 1740 | 1741 | require-directory@^2.1.1: 1742 | version "2.1.1" 1743 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1744 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1745 | 1746 | resolve@^1.10.0: 1747 | version "1.22.1" 1748 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1749 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1750 | dependencies: 1751 | is-core-module "^2.9.0" 1752 | path-parse "^1.0.7" 1753 | supports-preserve-symlinks-flag "^1.0.0" 1754 | 1755 | rimraf@^3.0.2: 1756 | version "3.0.2" 1757 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1758 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1759 | dependencies: 1760 | glob "^7.1.3" 1761 | 1762 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1763 | version "5.1.2" 1764 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1765 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1766 | 1767 | safe-buffer@~5.2.0: 1768 | version "5.2.1" 1769 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1770 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1771 | 1772 | "semver@2 || 3 || 4 || 5": 1773 | version "5.7.1" 1774 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1775 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1776 | 1777 | semver@^6.0.0: 1778 | version "6.3.0" 1779 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1780 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1781 | 1782 | semver@^7.1.1, semver@^7.3.4: 1783 | version "7.3.8" 1784 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1785 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1786 | dependencies: 1787 | lru-cache "^6.0.0" 1788 | 1789 | source-map@^0.6.1: 1790 | version "0.6.1" 1791 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1792 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1793 | 1794 | spdx-correct@^3.0.0: 1795 | version "3.1.1" 1796 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1797 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1798 | dependencies: 1799 | spdx-expression-parse "^3.0.0" 1800 | spdx-license-ids "^3.0.0" 1801 | 1802 | spdx-exceptions@^2.1.0: 1803 | version "2.3.0" 1804 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1805 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1806 | 1807 | spdx-expression-parse@^3.0.0: 1808 | version "3.0.1" 1809 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1810 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1811 | dependencies: 1812 | spdx-exceptions "^2.1.0" 1813 | spdx-license-ids "^3.0.0" 1814 | 1815 | spdx-license-ids@^3.0.0: 1816 | version "3.0.12" 1817 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" 1818 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== 1819 | 1820 | split2@^3.0.0: 1821 | version "3.2.2" 1822 | resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" 1823 | integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== 1824 | dependencies: 1825 | readable-stream "^3.0.0" 1826 | 1827 | split@^1.0.0: 1828 | version "1.0.1" 1829 | resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1830 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 1831 | dependencies: 1832 | through "2" 1833 | 1834 | standard-version@^9.5.0: 1835 | version "9.5.0" 1836 | resolved "https://registry.npmjs.org/standard-version/-/standard-version-9.5.0.tgz#851d6dcddf5320d5079601832aeb185dbf497949" 1837 | integrity sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q== 1838 | dependencies: 1839 | chalk "^2.4.2" 1840 | conventional-changelog "3.1.25" 1841 | conventional-changelog-config-spec "2.1.0" 1842 | conventional-changelog-conventionalcommits "4.6.3" 1843 | conventional-recommended-bump "6.1.0" 1844 | detect-indent "^6.0.0" 1845 | detect-newline "^3.1.0" 1846 | dotgitignore "^2.1.0" 1847 | figures "^3.1.0" 1848 | find-up "^5.0.0" 1849 | git-semver-tags "^4.0.0" 1850 | semver "^7.1.1" 1851 | stringify-package "^1.0.1" 1852 | yargs "^16.0.0" 1853 | 1854 | string-width@^4.1.0, string-width@^4.2.0: 1855 | version "4.2.3" 1856 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1857 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1858 | dependencies: 1859 | emoji-regex "^8.0.0" 1860 | is-fullwidth-code-point "^3.0.0" 1861 | strip-ansi "^6.0.1" 1862 | 1863 | string_decoder@^1.1.1: 1864 | version "1.3.0" 1865 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1866 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1867 | dependencies: 1868 | safe-buffer "~5.2.0" 1869 | 1870 | string_decoder@~1.1.1: 1871 | version "1.1.1" 1872 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1873 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1874 | dependencies: 1875 | safe-buffer "~5.1.0" 1876 | 1877 | stringify-package@^1.0.1: 1878 | version "1.0.1" 1879 | resolved "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" 1880 | integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== 1881 | 1882 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1883 | version "6.0.1" 1884 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1885 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1886 | dependencies: 1887 | ansi-regex "^5.0.1" 1888 | 1889 | strip-bom@^3.0.0: 1890 | version "3.0.0" 1891 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1892 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1893 | 1894 | strip-indent@^3.0.0: 1895 | version "3.0.0" 1896 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 1897 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 1898 | dependencies: 1899 | min-indent "^1.0.0" 1900 | 1901 | supports-color@^5.3.0: 1902 | version "5.5.0" 1903 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1904 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1905 | dependencies: 1906 | has-flag "^3.0.0" 1907 | 1908 | supports-preserve-symlinks-flag@^1.0.0: 1909 | version "1.0.0" 1910 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1911 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1912 | 1913 | symbol-observable@^2.0.3: 1914 | version "2.0.3" 1915 | resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a" 1916 | integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA== 1917 | 1918 | text-extensions@^1.0.0: 1919 | version "1.9.0" 1920 | resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 1921 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== 1922 | 1923 | through2@^2.0.0: 1924 | version "2.0.5" 1925 | resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 1926 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 1927 | dependencies: 1928 | readable-stream "~2.3.6" 1929 | xtend "~4.0.1" 1930 | 1931 | through2@^4.0.0: 1932 | version "4.0.2" 1933 | resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" 1934 | integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== 1935 | dependencies: 1936 | readable-stream "3" 1937 | 1938 | through@2, "through@>=2.2.7 <3": 1939 | version "2.3.8" 1940 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1941 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 1942 | 1943 | trim-newlines@^3.0.0: 1944 | version "3.0.1" 1945 | resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" 1946 | integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== 1947 | 1948 | type-fest@^0.18.0: 1949 | version "0.18.1" 1950 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" 1951 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 1952 | 1953 | type-fest@^0.6.0: 1954 | version "0.6.0" 1955 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 1956 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 1957 | 1958 | type-fest@^0.8.1: 1959 | version "0.8.1" 1960 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1961 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1962 | 1963 | typedarray@^0.0.6: 1964 | version "0.0.6" 1965 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1966 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== 1967 | 1968 | typescript@^4.8.3: 1969 | version "4.8.3" 1970 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz" 1971 | integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== 1972 | 1973 | uglify-js@^3.1.4: 1974 | version "3.17.3" 1975 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377" 1976 | integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg== 1977 | 1978 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 1979 | version "1.0.2" 1980 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1981 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1982 | 1983 | validate-npm-package-license@^3.0.1: 1984 | version "3.0.4" 1985 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1986 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1987 | dependencies: 1988 | spdx-correct "^3.0.0" 1989 | spdx-expression-parse "^3.0.0" 1990 | 1991 | wordwrap@^1.0.0: 1992 | version "1.0.0" 1993 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1994 | integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== 1995 | 1996 | wrap-ansi@^7.0.0: 1997 | version "7.0.0" 1998 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1999 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2000 | dependencies: 2001 | ansi-styles "^4.0.0" 2002 | string-width "^4.1.0" 2003 | strip-ansi "^6.0.0" 2004 | 2005 | wrappy@1: 2006 | version "1.0.2" 2007 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2008 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2009 | 2010 | ws@^7: 2011 | version "7.5.9" 2012 | resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" 2013 | integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== 2014 | 2015 | xstream@^11.14.0: 2016 | version "11.14.0" 2017 | resolved "https://registry.npmjs.org/xstream/-/xstream-11.14.0.tgz#2c071d26b18310523b6877e86b4e54df068a9ae5" 2018 | integrity sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw== 2019 | dependencies: 2020 | globalthis "^1.0.1" 2021 | symbol-observable "^2.0.3" 2022 | 2023 | xtend@~4.0.1: 2024 | version "4.0.2" 2025 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2026 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2027 | 2028 | y18n@^5.0.5: 2029 | version "5.0.8" 2030 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2031 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2032 | 2033 | yallist@^4.0.0: 2034 | version "4.0.0" 2035 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2036 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2037 | 2038 | yargs-parser@^20.2.2, yargs-parser@^20.2.3: 2039 | version "20.2.9" 2040 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2041 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2042 | 2043 | yargs@^16.0.0, yargs@^16.2.0: 2044 | version "16.2.0" 2045 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2046 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2047 | dependencies: 2048 | cliui "^7.0.2" 2049 | escalade "^3.1.1" 2050 | get-caller-file "^2.0.5" 2051 | require-directory "^2.1.1" 2052 | string-width "^4.2.0" 2053 | y18n "^5.0.5" 2054 | yargs-parser "^20.2.2" 2055 | 2056 | yocto-queue@^0.1.0: 2057 | version "0.1.0" 2058 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2059 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2060 | --------------------------------------------------------------------------------