├── .editorconfig
├── .eslintrc
├── .github
└── workflows
│ └── publish.yml
├── .gitignore
├── .prettierrc
├── LICENSE
├── README.md
├── babel.config.js
├── example
├── .gitignore
├── README.md
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
├── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── reportWebVitals.js
│ └── setupTests.js
└── yarn.lock
├── package.json
├── src
├── api.ts
├── clients
│ ├── feed
│ │ ├── feed.ts
│ │ ├── index.ts
│ │ ├── interfaces.ts
│ │ ├── store.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── preferences
│ │ ├── index.ts
│ │ └── interfaces.ts
│ └── users
│ │ ├── index.ts
│ │ └── interfaces.ts
├── index.ts
├── interfaces.ts
├── knock.ts
└── networkStatus.ts
├── tsconfig.json
└── yarn.lock
/.editorconfig:
--------------------------------------------------------------------------------
1 | # Editor configuration, see http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | indent_style = space
7 | indent_size = 2
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | max_line_length = off
13 | trim_trailing_whitespace = false
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "root": true,
3 | "parser": "@typescript-eslint/parser",
4 | "plugins": [
5 | "@typescript-eslint"
6 | ],
7 | "extends": [
8 | "eslint:recommended",
9 | "plugin:@typescript-eslint/recommended"
10 | ],
11 | "rules": {
12 | "@typescript-eslint/no-explicit-any": "off"
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/.github/workflows/publish.yml:
--------------------------------------------------------------------------------
1 | name: Publish package
2 | on:
3 | release:
4 | types: [created]
5 | jobs:
6 | build:
7 | runs-on: ubuntu-latest
8 | steps:
9 | - uses: actions/checkout@v2
10 | - uses: actions/setup-node@v2
11 | with:
12 | node-version: '14.x'
13 | registry-url: 'https://registry.npmjs.org'
14 | scope: '@knocklabs'
15 | - run: yarn
16 | - run: yarn publish
17 | env:
18 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
19 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production builds
12 | /dist
13 | /lib
14 |
15 | # misc
16 | .DS_Store
17 | .env.local
18 | .env.development.local
19 | .env.test.local
20 | .env.production.local
21 |
22 | npm-debug.log*
23 | yarn-debug.log*
24 | yarn-error.log*
25 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": false,
3 | "trailingComma": "all"
4 | }
5 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Knock Labs, Inc.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Knock Javascript client library
2 |
3 | **Note: This package has been moved to our [JavaScript monorepo](https://github.com/knocklabs/javascript/tree/main/packages/client).**
4 |
5 | A client-side Javascript library to interact with user-facing Knock features, such as feeds.
6 |
7 | **Note: this is a lower level library designed for building UI on top of**
8 |
9 | ## Documentation
10 |
11 | See the [documentation](https://docs.knock.app/notification-feeds/bring-your-own-ui) for usage examples.
12 |
13 | ## Installation
14 |
15 | Via NPM:
16 |
17 | ```bash
18 | npm install @knocklabs/client
19 | ```
20 |
21 | Via Yarn:
22 |
23 | ```bash
24 | yarn add @knocklabs/client
25 | ```
26 |
27 | ## Configuration
28 |
29 | To configure the client library you will need:
30 |
31 | 1. A public API key (found in the Knock dashboard)
32 | 2. A feed channel ID (found in the Knock dashboard)
33 | 3. A user ID, and optionally an auth token for production environments
34 |
35 | ```typescript
36 | import Knock from "@knocklabs/client";
37 |
38 | const knockClient = new Knock(process.env.KNOCK_API_KEY);
39 |
40 | knockClient.authenticate(
41 | // The id of the user you want to authenticate against
42 | currentUser.id,
43 | // You only need this in production environments
44 | currentUser.knockToken,
45 | );
46 | ```
47 |
48 | ### Retrieving new items from the feed
49 |
50 | ```typescript
51 | import Knock from "@knocklabs/client";
52 |
53 | const knockClient = new Knock(process.env.KNOCK_API_KEY);
54 |
55 | // Authenticate the user
56 | knockClient.authenticate(currentUser.id, currentUser.knockToken);
57 |
58 | // Initialize the feed
59 | const feedClient = knockClient.feeds.initialize(
60 | process.env.KNOCK_FEED_CHANNEL_ID,
61 | // Optionally you can provide a default scope here:
62 | // { tenant: "jurassic-park", source: "new-comment" },
63 | );
64 |
65 | // Connect to the real-time socket
66 | feedClient.listenForUpdates();
67 |
68 | // Setup a callback for when a batch of items is received (including on first load and subsequent page load)
69 | feedClient.on("items.received.page", ({ items }) => {
70 | console.log(items);
71 | });
72 |
73 | // Setup a callback for when new items arrive in real-time
74 | feedClient.on("items.received.realtime", ({ items }) => {
75 | console.log(items);
76 | });
77 |
78 | // Listen to all received items
79 | feedClient.on("items.received.*", ({ items }) => {
80 | console.log(items);
81 | });
82 |
83 | // Fetch the feed items
84 | feedClient.fetch({
85 | // Fetch a particular status only (defaults to all)
86 | status: "all" | "unread" | "unseen",
87 | // Pagination options
88 | after: lastItem.__cursor,
89 | before: firstItem.__cursor,
90 | // Defaults to 50
91 | page_size: 10,
92 | // Filter by a specific source
93 | source: "notification-key",
94 | // Filter by a specific tenant
95 | tenant: "jurassic-park",
96 | });
97 |
98 | feedClient.teardown();
99 | ```
100 |
101 | ### Reading the feed store state (programmatically)
102 |
103 | ```typescript
104 | // Initialize the feed as in above examples
105 | const feedClient = knockClient.feeds.initialize(
106 | process.env.KNOCK_FEED_CHANNEL_ID,
107 | );
108 |
109 | // Gives you all of the items currently in the store
110 | const { items } = feedClient.store.getState();
111 | ```
112 |
113 | ### Reading the feed store state (in React)
114 |
115 | ```typescript
116 | // The feed store uses zustand
117 | import create from "zustand";
118 |
119 | // Initialize the feed as in above examples
120 | const feedClient = knockClient.feeds.initialize(
121 | process.env.KNOCK_FEED_CHANNEL_ID,
122 | );
123 |
124 | const useFeedStore = create(feedClient.store);
125 |
126 | // Retrieves all of the items
127 | const items = useFeedStore((state) => state.items);
128 |
129 | // Retrieve the badge counts
130 | const meta = useFeedStore((state) => state.metadata);
131 | ```
132 |
133 | ### Marking items as read, seen, or archived
134 |
135 | ```typescript
136 | // Initialize the feed as in above examples
137 | const feedClient = knockClient.feeds.initialize(
138 | process.env.KNOCK_FEED_CHANNEL_ID,
139 | );
140 |
141 | // Mark one or more items as read
142 | feedClient.markAsRead(feedItemOrItems);
143 | // Mark one or more items as seen
144 | feedClient.markAsSeen(feedItemOrItems);
145 | // Mark one or more items as archived
146 | feedClient.markAsArchived(feedItemOrItems);
147 |
148 | // Mark one or more items as unread
149 | feedClient.markAsUnread(feedItemOrItems);
150 | // Mark one or more items as unseen
151 | feedClient.markAsUnseen(feedItemOrItems);
152 | // Mark one or more items as unarchived
153 | feedClient.markAsUnarchived(feedItemOrItems);
154 | ```
155 |
156 | ### Managing user preferences
157 |
158 | ```typescript
159 | // Set an entire preference set
160 | await knockClient.user.setPreferences({
161 | channel_types: { email: true, sms: false },
162 | workflows: {
163 | "dinosaurs-loose": {
164 | channel_types: { email: false, in_app_feed: true },
165 | },
166 | },
167 | });
168 |
169 | // Retrieve a whole preference set
170 | const preferences = await knockClient.user.getPreferences();
171 |
172 | // Retrieve all preference sets for the user
173 | const preferenceSets = await knockClient.user.getAllPreferences();
174 | ```
175 |
176 | ### Managing the current user's channel data
177 |
178 | ```typescript
179 | // Get user channel data
180 | const channelData = await knockClient.user.getChannelData({
181 | channelId: "uuid-knock-channel-id",
182 | });
183 | ```
184 |
185 | ```typescript
186 | // Set push channel data for a user
187 | await knockClient.user.setChannelData({
188 | channelId: "uuid-knock-channel-id",
189 | channelData: {
190 | tokens: ["apns-user-push-token"],
191 | },
192 | });
193 | ```
194 |
195 | See provider requirements for setting channel data [here]("https://docs.knock.app/managing-recipients/setting-channel-data#provider-data-requirements").
196 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | const BABEL_ENV = process.env.BABEL_ENV;
2 | const isCommonJS = BABEL_ENV !== undefined && BABEL_ENV === "cjs";
3 | const isESM = BABEL_ENV !== undefined && BABEL_ENV === "esm";
4 |
5 | module.exports = function (api) {
6 | api.cache(true);
7 |
8 | const presets = [
9 | [
10 | "@babel/env",
11 | {
12 | loose: false,
13 | modules: isCommonJS ? "commonjs" : false,
14 | targets: {
15 | esmodules: isESM ? true : undefined,
16 | },
17 | },
18 | ],
19 | "@babel/preset-typescript",
20 | ];
21 |
22 | const plugins = [
23 | "@babel/plugin-transform-runtime",
24 | "@babel/proposal-class-properties",
25 | "@babel/proposal-object-rest-spread",
26 | ];
27 |
28 | return {
29 | presets,
30 | plugins,
31 | };
32 | };
33 |
--------------------------------------------------------------------------------
/example/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/example/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `yarn start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `yarn test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `yarn build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `yarn eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `yarn build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.11.4",
7 | "@testing-library/react": "^11.1.0",
8 | "@testing-library/user-event": "^12.1.10",
9 | "react": "^17.0.2",
10 | "react-dom": "^17.0.2",
11 | "react-scripts": "5.0.0",
12 | "web-vitals": "^1.0.1",
13 | "zustand": "^3.4.2"
14 | },
15 | "scripts": {
16 | "start": "react-scripts start",
17 | "build": "react-scripts build",
18 | "test": "react-scripts test",
19 | "eject": "react-scripts eject"
20 | },
21 | "eslintConfig": {
22 | "extends": [
23 | "react-app",
24 | "react-app/jest"
25 | ]
26 | },
27 | "browserslist": {
28 | "production": [
29 | ">0.2%",
30 | "not dead",
31 | "not op_mini all"
32 | ],
33 | "development": [
34 | "last 1 chrome version",
35 | "last 1 firefox version",
36 | "last 1 safari version"
37 | ]
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/example/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/knocklabs/knock-client-js/4d9f4ec55bc9214b66b0164636955faa0c1c0612/example/public/favicon.ico
--------------------------------------------------------------------------------
/example/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/example/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/knocklabs/knock-client-js/4d9f4ec55bc9214b66b0164636955faa0c1c0612/example/public/logo192.png
--------------------------------------------------------------------------------
/example/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/knocklabs/knock-client-js/4d9f4ec55bc9214b66b0164636955faa0c1c0612/example/public/logo512.png
--------------------------------------------------------------------------------
/example/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/example/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/example/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: left;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/example/src/App.js:
--------------------------------------------------------------------------------
1 | import { useEffect, useMemo } from "react";
2 | import "./App.css";
3 | import Knock from "@knocklabs/client";
4 | import create from "zustand";
5 |
6 | const knockClient = new Knock(process.env.REACT_APP_KNOCK_API_KEY, {
7 | host: "http://localhost:4001",
8 | });
9 |
10 | knockClient.authenticate(process.env.REACT_APP_KNOCK_USER_ID);
11 |
12 | const useNotificationFeed = (knockClient, feedId) => {
13 | return useMemo(() => {
14 | // Create the notification feed instance
15 | const notificationFeed = knockClient.feeds.initialize(feedId);
16 | const notificationStore = create(notificationFeed.store);
17 | notificationFeed.fetch();
18 |
19 | return [notificationFeed, notificationStore];
20 | }, [knockClient, feedId]);
21 | };
22 |
23 | function App() {
24 | const [feedClient, feedStore] = useNotificationFeed(
25 | knockClient,
26 | process.env.REACT_APP_KNOCK_CHANNEL_ID,
27 | );
28 |
29 | useEffect(() => {
30 | knockClient.preferences
31 | .get()
32 | .then((p) => {
33 | console.log(p);
34 | })
35 | .catch((e) => {
36 | console.error(e);
37 | });
38 | }, []);
39 |
40 | useEffect(() => {
41 | const teardown = feedClient.listenForUpdates();
42 |
43 | feedClient.on("messages.new", (data) => {
44 | console.log(data);
45 | });
46 |
47 | feedClient.on("items.received.*", (data) => {
48 | console.log(data);
49 | });
50 |
51 | return () => teardown();
52 | }, [feedClient]);
53 |
54 | const { loading, items, pageInfo } = feedStore((state) => state);
55 |
56 | return (
57 |
58 |
Feed items
59 |
60 | {loading &&
Loading...}
61 |
62 | {items.map((item) => (
63 |
64 | ID: {item.id}
65 |
66 | Actor ID: {item.actors[0].id}
67 |
68 | Actor email: {item.actors[0].email}
69 |
70 | Inserted: {item.inserted_at}
71 |
72 |
73 | ))}
74 |
75 |
81 |
82 | );
83 | }
84 |
85 | export default App;
86 |
--------------------------------------------------------------------------------
/example/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render();
6 | const linkElement = screen.getByText(/learn react/i);
7 | expect(linkElement).toBeInTheDocument();
8 | });
9 |
--------------------------------------------------------------------------------
/example/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | }
9 |
10 | code {
11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 | monospace;
13 | }
14 |
--------------------------------------------------------------------------------
/example/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 |
7 | ReactDOM.render(
8 |
9 |
10 | ,
11 | document.getElementById('root')
12 | );
13 |
14 | // If you want to start measuring performance in your app, pass a function
15 | // to log results (for example: reportWebVitals(console.log))
16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17 | reportWebVitals();
18 |
--------------------------------------------------------------------------------
/example/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/example/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/example/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@knocklabs/client",
3 | "version": "0.8.15",
4 | "description": "The clientside library for interacting with Knock",
5 | "homepage": "https://github.com/knocklabs/knock-client-js",
6 | "author": "@knocklabs",
7 | "license": "MIT",
8 | "main": "dist/cjs/index.js",
9 | "module": "dist/esm/index.js",
10 | "types": "dist/types/index.d.ts",
11 | "typings": "dist/types/index.d.ts",
12 | "exports": {
13 | ".": {
14 | "require": "./dist/cjs/index.js",
15 | "types": "./dist/types/index.d.ts",
16 | "default": "./dist/esm/index.js"
17 | }
18 | },
19 | "files": [
20 | "dist",
21 | "README.md"
22 | ],
23 | "repository": {
24 | "type": "git",
25 | "url": "git+https://github.com/knocklabs/knock-client-js.git"
26 | },
27 | "bugs": {
28 | "url": "https://github.com/knocklabs/knock-client-js/issues"
29 | },
30 | "scripts": {
31 | "lint": "eslint \"src/**/*.+(ts|js|tsx)\"",
32 | "prettier": "prettier \"src/**/*.{js,ts,tsx}\" --check",
33 | "format": "prettier \"src/**/*.{js,ts,tsx}\" --write",
34 | "clean": "rimraf dist",
35 | "type-check": "tsc --noEmit",
36 | "type-check:watch": "npm run type-check -- --watch",
37 | "build": "yarn clean && yarn build:esm && yarn build:cjs && yarn build:types",
38 | "build:esm": "cross-env BABEL_ENV=esm babel src --extensions .ts,.tsx -d dist/esm --source-maps --ignore 'src/stories/*'",
39 | "build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions .ts,.tsx -d dist/cjs --source-maps --ignore 'src/stories/*'",
40 | "build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
41 | "test": "jest",
42 | "prepublishOnly": "npm run build"
43 | },
44 | "devDependencies": {
45 | "@babel/cli": "^7.16.7",
46 | "@babel/core": "^7.16.7",
47 | "@babel/plugin-proposal-class-properties": "^7.16.7",
48 | "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
49 | "@babel/plugin-transform-runtime": "^7.16.7",
50 | "@babel/preset-env": "^7.16.7",
51 | "@babel/preset-typescript": "^7.16.7",
52 | "@types/phoenix": "^1.5.4",
53 | "@typescript-eslint/eslint-plugin": "^5.4.0",
54 | "@typescript-eslint/parser": "^5.4.0",
55 | "cross-env": "^7.0.3",
56 | "eslint": "7.23.0",
57 | "prettier": "^2.2.1",
58 | "rimraf": "^3.0.2",
59 | "rollup": "^2.46.0",
60 | "typescript": "^4.2.4"
61 | },
62 | "dependencies": {
63 | "axios": "^1.6.0",
64 | "axios-retry": "^3.1.9",
65 | "eventemitter2": "^6.4.5",
66 | "phoenix": "1.6.16",
67 | "zustand": "^3.7.2"
68 | }
69 | }
--------------------------------------------------------------------------------
/src/api.ts:
--------------------------------------------------------------------------------
1 | import axios, { AxiosInstance, AxiosRequestConfig } from "axios";
2 | import axiosRetry from "axios-retry";
3 | import { Socket } from "phoenix";
4 | import { AxiosError } from "axios";
5 |
6 | type ApiClientOptions = {
7 | host: string;
8 | apiKey: string;
9 | userToken: string | undefined;
10 | };
11 |
12 | export interface ApiResponse {
13 | // eslint-disable-next-line
14 | error?: any;
15 | // eslint-disable-next-line
16 | body?: any;
17 | statusCode: "ok" | "error";
18 | status: number;
19 | }
20 |
21 | class ApiClient {
22 | private host: string;
23 | private apiKey: string;
24 | private userToken: string | null;
25 | private axiosClient: AxiosInstance;
26 |
27 | public socket: Socket | undefined;
28 |
29 | constructor(options: ApiClientOptions) {
30 | this.host = options.host;
31 | this.apiKey = options.apiKey;
32 | this.userToken = options.userToken || null;
33 |
34 | // Create a retryable axios client
35 | this.axiosClient = axios.create({
36 | baseURL: this.host,
37 | headers: {
38 | Accept: "application/json",
39 | "Content-Type": "application/json",
40 | Authorization: `Bearer ${this.apiKey}`,
41 | "X-Knock-User-Token": this.userToken,
42 | },
43 | });
44 |
45 | if (typeof window !== "undefined") {
46 | this.socket = new Socket(`${this.host.replace("http", "ws")}/ws/v1`, {
47 | params: {
48 | user_token: this.userToken,
49 | api_key: this.apiKey,
50 | },
51 | });
52 | }
53 |
54 | axiosRetry(this.axiosClient, {
55 | retries: 3,
56 | retryCondition: this.canRetryRequest,
57 | retryDelay: axiosRetry.exponentialDelay,
58 | });
59 | }
60 |
61 | async makeRequest(req: AxiosRequestConfig): Promise {
62 | try {
63 | const result = await this.axiosClient(req);
64 |
65 | return {
66 | statusCode: result.status < 300 ? "ok" : "error",
67 | body: result.data,
68 | error: undefined,
69 | status: result.status,
70 | };
71 |
72 | // eslint:disable-next-line
73 | } catch (e: unknown) {
74 | console.error(e);
75 |
76 | return {
77 | statusCode: "error",
78 | status: 500,
79 | body: undefined,
80 | error: e,
81 | };
82 | }
83 | }
84 |
85 | private canRetryRequest(error: AxiosError) {
86 | // Retry Network Errors.
87 | if (axiosRetry.isNetworkError(error)) {
88 | return true;
89 | }
90 |
91 | if (!error.response) {
92 | // Cannot determine if the request can be retried
93 | return false;
94 | }
95 |
96 | // Retry Server Errors (5xx).
97 | if (error.response.status >= 500 && error.response.status <= 599) {
98 | return true;
99 | }
100 |
101 | // Retry if rate limited.
102 | if (error.response.status === 429) {
103 | return true;
104 | }
105 |
106 | return false;
107 | }
108 | }
109 |
110 | export default ApiClient;
111 |
--------------------------------------------------------------------------------
/src/clients/feed/feed.ts:
--------------------------------------------------------------------------------
1 | import { Channel } from "phoenix";
2 | import { StoreApi } from "zustand";
3 | import { EventEmitter2 as EventEmitter } from "eventemitter2";
4 | import ApiClient from "../../api";
5 | import createStore from "./store";
6 | import {
7 | BindableFeedEvent,
8 | FeedMessagesReceivedPayload,
9 | FeedEventCallback,
10 | FeedEvent,
11 | FeedItemOrItems,
12 | FeedStoreState,
13 | FeedEventPayload,
14 | FeedRealTimeCallback,
15 | } from "./types";
16 | import {
17 | FeedItem,
18 | FeedClientOptions,
19 | FetchFeedOptions,
20 | FeedResponse,
21 | FeedMetadata,
22 | } from "./interfaces";
23 | import Knock from "../../knock";
24 | import { isRequestInFlight, NetworkStatus } from "../../networkStatus";
25 |
26 | export type Status =
27 | | "seen"
28 | | "read"
29 | | "interacted"
30 | | "archived"
31 | | "unseen"
32 | | "unread"
33 | | "unarchived";
34 |
35 | // Default options to apply
36 | const feedClientDefaults: Pick = {
37 | archived: "exclude",
38 | };
39 |
40 | class Feed {
41 | private apiClient: ApiClient;
42 | private userFeedId: string;
43 | private channel: Channel | undefined;
44 | private broadcaster: EventEmitter;
45 | private defaultOptions: FeedClientOptions;
46 | private broadcastChannel: BroadcastChannel | null;
47 |
48 | // The raw store instance, used for binding in React and other environments
49 | public store: StoreApi;
50 |
51 | constructor(
52 | readonly knock: Knock,
53 | readonly feedId: string,
54 | options: FeedClientOptions,
55 | ) {
56 | this.apiClient = knock.client();
57 | this.feedId = feedId;
58 | this.userFeedId = this.buildUserFeedId();
59 | this.store = createStore();
60 | this.broadcaster = new EventEmitter({ wildcard: true, delimiter: "." });
61 | this.defaultOptions = { ...feedClientDefaults, ...options };
62 |
63 | // In server environments we might not have a socket connection
64 | if (this.apiClient.socket) {
65 | this.channel = this.apiClient.socket.channel(
66 | `feeds:${this.userFeedId}`,
67 | this.defaultOptions,
68 | );
69 |
70 | this.channel.on("new-message", (resp) => this.onNewMessageReceived(resp));
71 | }
72 |
73 | // Attempt to bind to listen to other events from this feed in different tabs
74 | // Note: here we ensure `self` is available (it's not in server rendered envs)
75 | this.broadcastChannel =
76 | typeof self !== "undefined" && "BroadcastChannel" in self
77 | ? new BroadcastChannel(`knock:feed:${this.userFeedId}`)
78 | : null;
79 | }
80 |
81 | /**
82 | * Cleans up a feed instance by destroying the store and disconnecting
83 | * an open socket connection.
84 | */
85 | teardown() {
86 | if (this.channel) {
87 | this.channel.leave();
88 | this.channel.off("new-message");
89 | }
90 |
91 | this.broadcaster.removeAllListeners();
92 | this.store.destroy();
93 |
94 | if (this.broadcastChannel) {
95 | this.broadcastChannel.close();
96 | }
97 | }
98 |
99 | /*
100 | Initializes a real-time connection to Knock, connecting the websocket for the
101 | current ApiClient instance if the socket is not already connected.
102 | */
103 | listenForUpdates() {
104 | // Connect the socket only if we don't already have a connection
105 | if (this.apiClient.socket && !this.apiClient.socket.isConnected()) {
106 | this.apiClient.socket.connect();
107 | }
108 |
109 | // Only join the channel if we're not already in a joining state
110 | if (this.channel && ["closed", "errored"].includes(this.channel.state)) {
111 | this.channel.join();
112 | }
113 |
114 | // Opt into receiving updates from _other tabs for the same user / feed_ via the broadcast
115 | // channel (iff it's enabled and exists)
116 | if (
117 | this.broadcastChannel &&
118 | this.defaultOptions.__experimentalCrossBrowserUpdates === true
119 | ) {
120 | this.broadcastChannel.onmessage = (e) => {
121 | switch (e.data.type) {
122 | case "items:archived":
123 | case "items:unarchived":
124 | case "items:seen":
125 | case "items:unseen":
126 | case "items:read":
127 | case "items:unread":
128 | case "items:all_read":
129 | case "items:all_seen":
130 | case "items:all_archived":
131 | // When items are updated in any other tab, simply refetch to get the latest state
132 | // to make sure that the state gets updated accordingly. In the future here we could
133 | // maybe do this optimistically without the fetch.
134 | return this.fetch();
135 | break;
136 | default:
137 | return null;
138 | }
139 | };
140 | }
141 | }
142 |
143 | /* Binds a handler to be invoked when event occurs */
144 | on(
145 | eventName: BindableFeedEvent,
146 | callback: FeedEventCallback | FeedRealTimeCallback,
147 | ) {
148 | this.broadcaster.on(eventName, callback);
149 | }
150 |
151 | off(
152 | eventName: BindableFeedEvent,
153 | callback: FeedEventCallback | FeedRealTimeCallback,
154 | ) {
155 | this.broadcaster.off(eventName, callback);
156 | }
157 |
158 | getState() {
159 | return this.store.getState();
160 | }
161 |
162 | async markAsSeen(itemOrItems: FeedItemOrItems) {
163 | const now = new Date().toISOString();
164 | this.optimisticallyPerformStatusUpdate(
165 | itemOrItems,
166 | "seen",
167 | { seen_at: now },
168 | "unseen_count",
169 | );
170 |
171 | return this.makeStatusUpdate(itemOrItems, "seen");
172 | }
173 |
174 | async markAllAsSeen() {
175 | // To mark all of the messages as seen we:
176 | // 1. Optimistically update *everything* we have in the store
177 | // 2. We decrement the `unseen_count` to zero optimistically
178 | // 3. We issue the API call to the endpoint
179 | //
180 | // Note: there is the potential for a race condition here because the bulk
181 | // update is an async method, so if a new message comes in during this window before
182 | // the update has been processed we'll effectively reset the `unseen_count` to be what it was.
183 | //
184 | // Note: here we optimistically handle the case whereby the feed is scoped to show only `unseen`
185 | // items by removing everything from view.
186 | const { getState, setState } = this.store;
187 | const { metadata, items } = getState();
188 |
189 | const isViewingOnlyUnseen = this.defaultOptions.status === "unseen";
190 |
191 | // If we're looking at the unseen view, then we want to remove all of the items optimistically
192 | // from the store given that nothing should be visible. We do this by resetting the store state
193 | // and setting the current metadata counts to 0
194 | if (isViewingOnlyUnseen) {
195 | setState((store) =>
196 | store.resetStore({
197 | ...metadata,
198 | total_count: 0,
199 | unseen_count: 0,
200 | }),
201 | );
202 | } else {
203 | // Otherwise we want to update the metadata and mark all of the items in the store as seen
204 | setState((store) => store.setMetadata({ ...metadata, unseen_count: 0 }));
205 |
206 | const attrs = { seen_at: new Date().toISOString() };
207 | const itemIds = items.map((item) => item.id);
208 |
209 | setState((store) => store.setItemAttrs(itemIds, attrs));
210 | }
211 |
212 | // Issue the API request to the bulk status change API
213 | const result = await this.makeBulkStatusUpdate("seen");
214 |
215 | this.broadcaster.emit(`items:all_seen`, { items });
216 | this.broadcastOverChannel(`items:all_seen`, { items });
217 |
218 | return result;
219 | }
220 |
221 | async markAsUnseen(itemOrItems: FeedItemOrItems) {
222 | this.optimisticallyPerformStatusUpdate(
223 | itemOrItems,
224 | "unseen",
225 | { seen_at: null },
226 | "unseen_count",
227 | );
228 |
229 | return this.makeStatusUpdate(itemOrItems, "unseen");
230 | }
231 |
232 | async markAsRead(itemOrItems: FeedItemOrItems) {
233 | const now = new Date().toISOString();
234 | this.optimisticallyPerformStatusUpdate(
235 | itemOrItems,
236 | "read",
237 | { read_at: now },
238 | "unread_count",
239 | );
240 |
241 | return this.makeStatusUpdate(itemOrItems, "read");
242 | }
243 |
244 | async markAllAsRead() {
245 | // To mark all of the messages as read we:
246 | // 1. Optimistically update *everything* we have in the store
247 | // 2. We decrement the `unread_count` to zero optimistically
248 | // 3. We issue the API call to the endpoint
249 | //
250 | // Note: there is the potential for a race condition here because the bulk
251 | // update is an async method, so if a new message comes in during this window before
252 | // the update has been processed we'll effectively reset the `unread_count` to be what it was.
253 | //
254 | // Note: here we optimistically handle the case whereby the feed is scoped to show only `unread`
255 | // items by removing everything from view.
256 | const { getState, setState } = this.store;
257 | const { metadata, items } = getState();
258 |
259 | const isViewingOnlyUnread = this.defaultOptions.status === "unread";
260 |
261 | // If we're looking at the unread view, then we want to remove all of the items optimistically
262 | // from the store given that nothing should be visible. We do this by resetting the store state
263 | // and setting the current metadata counts to 0
264 | if (isViewingOnlyUnread) {
265 | setState((store) =>
266 | store.resetStore({
267 | ...metadata,
268 | total_count: 0,
269 | unread_count: 0,
270 | }),
271 | );
272 | } else {
273 | // Otherwise we want to update the metadata and mark all of the items in the store as seen
274 | setState((store) => store.setMetadata({ ...metadata, unread_count: 0 }));
275 |
276 | const attrs = { read_at: new Date().toISOString() };
277 | const itemIds = items.map((item) => item.id);
278 |
279 | setState((store) => store.setItemAttrs(itemIds, attrs));
280 | }
281 |
282 | // Issue the API request to the bulk status change API
283 | const result = await this.makeBulkStatusUpdate("read");
284 |
285 | this.broadcaster.emit(`items:all_read`, { items });
286 | this.broadcastOverChannel(`items:all_read`, { items });
287 |
288 | return result;
289 | }
290 |
291 | async markAsUnread(itemOrItems: FeedItemOrItems) {
292 | this.optimisticallyPerformStatusUpdate(
293 | itemOrItems,
294 | "unread",
295 | { read_at: null },
296 | "unread_count",
297 | );
298 |
299 | return this.makeStatusUpdate(itemOrItems, "unread");
300 | }
301 |
302 | async markAsInteracted(itemOrItems: FeedItemOrItems) {
303 | const now = new Date().toISOString();
304 | this.optimisticallyPerformStatusUpdate(
305 | itemOrItems,
306 | "interacted",
307 | {
308 | read_at: now,
309 | interacted_at: now,
310 | },
311 | "unread_count",
312 | );
313 |
314 | return this.makeStatusUpdate(itemOrItems, "interacted");
315 | }
316 |
317 | /*
318 | Marking one or more items as archived should:
319 |
320 | - Decrement the badge count for any unread / unseen items
321 | - Remove the item from the feed list when the `archived` flag is "exclude" (default)
322 |
323 | TODO: how do we handle rollbacks?
324 | */
325 | async markAsArchived(itemOrItems: FeedItemOrItems) {
326 | const { getState, setState } = this.store;
327 | const state = getState();
328 |
329 | const shouldOptimisticallyRemoveItems =
330 | this.defaultOptions.archived === "exclude";
331 |
332 | const normalizedItems = Array.isArray(itemOrItems)
333 | ? itemOrItems
334 | : [itemOrItems];
335 |
336 | const itemIds: string[] = normalizedItems.map((item) => item.id);
337 |
338 | /*
339 | In the code here we want to optimistically update counts and items
340 | that are persisted such that we can display updates immediately on the feed
341 | without needing to make a network request.
342 |
343 | Note: right now this does *not* take into account offline handling or any extensive retry
344 | logic, so rollbacks aren't considered. That probably needs to be a future consideration for
345 | this library.
346 |
347 | Scenarios to consider:
348 |
349 | ## Feed scope to archived *only*
350 |
351 | - Counts should not be decremented
352 | - Items should not be removed
353 |
354 | ## Feed scoped to exclude archived items (the default)
355 |
356 | - Counts should be decremented
357 | - Items should be removed
358 |
359 | ## Feed scoped to include archived items as well
360 |
361 | - Counts should not be decremented
362 | - Items should not be removed
363 | */
364 |
365 | if (shouldOptimisticallyRemoveItems) {
366 | // If any of the items are unseen or unread, then capture as we'll want to decrement
367 | // the counts for these in the metadata we have
368 | const unseenCount = normalizedItems.filter((i) => !i.seen_at).length;
369 | const unreadCount = normalizedItems.filter((i) => !i.read_at).length;
370 |
371 | // Build the new metadata
372 | const updatedMetadata = {
373 | ...state.metadata,
374 | total_count: state.metadata.total_count - normalizedItems.length,
375 | unseen_count: state.metadata.unseen_count - unseenCount,
376 | unread_count: state.metadata.unread_count - unreadCount,
377 | };
378 |
379 | // Remove the archiving entries
380 | const entriesToSet = state.items.filter(
381 | (item) => !itemIds.includes(item.id),
382 | );
383 |
384 | setState((state) =>
385 | state.setResult({
386 | entries: entriesToSet,
387 | meta: updatedMetadata,
388 | page_info: state.pageInfo,
389 | }),
390 | );
391 | } else {
392 | // Mark all the entries being updated as archived either way so the state is correct
393 | state.setItemAttrs(itemIds, { archived_at: new Date().toISOString() });
394 | }
395 |
396 | return this.makeStatusUpdate(itemOrItems, "archived");
397 | }
398 |
399 | async markAllAsArchived() {
400 | // Note: there is the potential for a race condition here because the bulk
401 | // update is an async method, so if a new message comes in during this window before
402 | // the update has been processed we'll effectively reset the `unseen_count` to be what it was.
403 | const { setState, getState } = this.store;
404 | const { items } = getState();
405 |
406 | // Here if we're looking at a feed that excludes all of the archived items by default then we
407 | // will want to optimistically remove all of the items from the feed as they are now all excluded
408 | const shouldOptimisticallyRemoveItems =
409 | this.defaultOptions.archived === "exclude";
410 |
411 | if (shouldOptimisticallyRemoveItems) {
412 | // Reset the store to clear out all of items and reset the badge count
413 | setState((store) => store.resetStore());
414 | } else {
415 | // Mark all the entries being updated as archived either way so the state is correct
416 | setState((store) => {
417 | const itemIds = items.map((i) => i.id);
418 | store.setItemAttrs(itemIds, { archived_at: new Date().toISOString() });
419 | });
420 | }
421 |
422 | // Issue the API request to the bulk status change API
423 | const result = await this.makeBulkStatusUpdate("archive");
424 |
425 | this.broadcaster.emit(`items:all_archived`, { items });
426 | this.broadcastOverChannel(`items:all_archived`, { items });
427 |
428 | return result;
429 | }
430 |
431 | async markAsUnarchived(itemOrItems: FeedItemOrItems) {
432 | this.optimisticallyPerformStatusUpdate(itemOrItems, "unarchived", {
433 | archived_at: null,
434 | });
435 |
436 | return this.makeStatusUpdate(itemOrItems, "unarchived");
437 | }
438 |
439 | /* Fetches the feed content, appending it to the store */
440 | async fetch(options: FetchFeedOptions = {}) {
441 | const { setState, getState } = this.store;
442 | const { networkStatus } = getState();
443 |
444 | // If there's an existing request in flight, then do nothing
445 | if (isRequestInFlight(networkStatus)) {
446 | return;
447 | }
448 |
449 | // Set the loading type based on the request type it is
450 | setState((store) =>
451 | store.setNetworkStatus(options.__loadingType ?? NetworkStatus.loading),
452 | );
453 |
454 | // Always include the default params, if they have been set
455 | const queryParams = {
456 | ...this.defaultOptions,
457 | ...options,
458 | // Unset options that should not be sent to the API
459 | __loadingType: undefined,
460 | __fetchSource: undefined,
461 | __experimentalCrossBrowserUpdates: undefined,
462 | };
463 |
464 | const result = await this.apiClient.makeRequest({
465 | method: "GET",
466 | url: `/v1/users/${this.knock.userId}/feeds/${this.feedId}`,
467 | params: queryParams,
468 | });
469 |
470 | if (result.statusCode === "error" || !result.body) {
471 | setState((store) => store.setNetworkStatus(NetworkStatus.error));
472 |
473 | return {
474 | status: result.statusCode,
475 | data: result.error || result.body,
476 | };
477 | }
478 |
479 | const response = {
480 | entries: result.body.entries,
481 | meta: result.body.meta,
482 | page_info: result.body.page_info,
483 | };
484 |
485 | if (options.before) {
486 | const opts = { shouldSetPage: false, shouldAppend: true };
487 | setState((state) => state.setResult(response, opts));
488 | } else if (options.after) {
489 | const opts = { shouldSetPage: true, shouldAppend: true };
490 | setState((state) => state.setResult(response, opts));
491 | } else {
492 | setState((state) => state.setResult(response));
493 | }
494 |
495 | // Legacy `messages.new` event, should be removed in a future version
496 | this.broadcast("messages.new", response);
497 |
498 | // Broadcast the appropriate event type depending on the fetch source
499 | const feedEventType: FeedEvent =
500 | options.__fetchSource === "socket"
501 | ? "items.received.realtime"
502 | : "items.received.page";
503 |
504 | const eventPayload = {
505 | items: response.entries as FeedItem[],
506 | metadata: response.meta as FeedMetadata,
507 | event: feedEventType,
508 | };
509 |
510 | this.broadcast(eventPayload.event, eventPayload);
511 |
512 | return { data: response, status: result.statusCode };
513 | }
514 |
515 | async fetchNextPage() {
516 | // Attempts to fetch the next page of results (if we have any)
517 | const { getState } = this.store;
518 | const { pageInfo } = getState();
519 |
520 | if (!pageInfo.after) {
521 | // Nothing more to fetch
522 | return;
523 | }
524 |
525 | this.fetch({
526 | after: pageInfo.after,
527 | __loadingType: NetworkStatus.fetchMore,
528 | });
529 | }
530 |
531 | private broadcast(
532 | eventName: FeedEvent,
533 | data: FeedResponse | FeedEventPayload,
534 | ) {
535 | this.broadcaster.emit(eventName, data);
536 | }
537 |
538 | // Invoked when a new real-time message comes in from the socket
539 | private async onNewMessageReceived({
540 | metadata,
541 | }: FeedMessagesReceivedPayload) {
542 | // Handle the new message coming in
543 | const { getState, setState } = this.store;
544 | const { items } = getState();
545 | const currentHead: FeedItem | undefined = items[0];
546 | // Optimistically set the badge counts
547 | setState((state) => state.setMetadata(metadata));
548 | // Fetch the items before the current head (if it exists)
549 | this.fetch({ before: currentHead?.__cursor, __fetchSource: "socket" });
550 | }
551 |
552 | private buildUserFeedId() {
553 | return `${this.feedId}:${this.knock.userId}`;
554 | }
555 |
556 | private optimisticallyPerformStatusUpdate(
557 | itemOrItems: FeedItemOrItems,
558 | type: Status,
559 | attrs: object,
560 | badgeCountAttr?: "unread_count" | "unseen_count",
561 | ) {
562 | const { getState, setState } = this.store;
563 | const normalizedItems = Array.isArray(itemOrItems)
564 | ? itemOrItems
565 | : [itemOrItems];
566 | const itemIds = normalizedItems.map((item) => item.id);
567 |
568 | if (badgeCountAttr) {
569 | const { metadata } = getState();
570 |
571 | // We only want to update the counts of items that have not already been counted towards the
572 | // badge count total to avoid updating the badge count unnecessarily.
573 | const itemsToUpdate = normalizedItems.filter((item) => {
574 | switch (type) {
575 | case "seen":
576 | return item.seen_at === null;
577 | case "unseen":
578 | return item.seen_at !== null;
579 | case "read":
580 | case "interacted":
581 | return item.read_at === null;
582 | case "unread":
583 | return item.read_at !== null;
584 | default:
585 | return true;
586 | }
587 | });
588 |
589 | // Tnis is a hack to determine the direction of whether we're
590 | // adding or removing from the badge count
591 | const direction = type.startsWith("un")
592 | ? itemsToUpdate.length
593 | : -itemsToUpdate.length;
594 |
595 | setState((store) =>
596 | store.setMetadata({
597 | ...metadata,
598 | [badgeCountAttr]: Math.max(0, metadata[badgeCountAttr] + direction),
599 | }),
600 | );
601 | }
602 |
603 | // Update the items with the given attributes
604 | setState((store) => store.setItemAttrs(itemIds, attrs));
605 | }
606 |
607 | private async makeStatusUpdate(itemOrItems: FeedItemOrItems, type: Status) {
608 | // Always treat items as a batch to use the corresponding batch endpoint
609 | const items = Array.isArray(itemOrItems) ? itemOrItems : [itemOrItems];
610 | const itemIds = items.map((item) => item.id);
611 |
612 | const result = await this.apiClient.makeRequest({
613 | method: "POST",
614 | url: `/v1/messages/batch/${type}`,
615 | data: { message_ids: itemIds },
616 | });
617 |
618 | // Emit the event that these items had their statuses changed
619 | // Note: we do this after the update to ensure that the server event actually completed
620 | this.broadcaster.emit(`items:${type}`, { items });
621 | this.broadcastOverChannel(`items:${type}`, { items });
622 |
623 | return result;
624 | }
625 |
626 | private async makeBulkStatusUpdate(type: "seen" | "read" | "archive") {
627 | // The base scope for the call should take into account all of the options currently
628 | // set on the feed, as well as being scoped for the current user. We do this so that
629 | // we ONLY make changes to the messages that are currently in view on this feed, and not
630 | // all messages that exist.
631 | const options = {
632 | user_ids: [this.knock.userId],
633 | engagement_status:
634 | this.defaultOptions.status !== "all"
635 | ? this.defaultOptions.status
636 | : undefined,
637 | archived: this.defaultOptions.archived,
638 | has_tenant: this.defaultOptions.has_tenant,
639 | tenants: this.defaultOptions.tenant
640 | ? [this.defaultOptions.tenant]
641 | : undefined,
642 | };
643 |
644 | return await this.apiClient.makeRequest({
645 | method: "POST",
646 | url: `/v1/channels/${this.feedId}/messages/bulk/${type}`,
647 | data: options,
648 | });
649 | }
650 |
651 | private broadcastOverChannel(type: string, payload: any) {
652 | // The broadcastChannel may not be available in non-browser environments
653 | if (!this.broadcastChannel) {
654 | return;
655 | }
656 |
657 | // Here we stringify our payload and try and send as JSON such that we
658 | // don't get any `An object could not be cloned` errors when trying to broadcast
659 | try {
660 | const stringifiedPayload = JSON.parse(JSON.stringify(payload));
661 |
662 | this.broadcastChannel.postMessage({
663 | type,
664 | payload: stringifiedPayload,
665 | });
666 | } catch (e) {
667 | console.warn(`Could not broadcast ${type}, got error: ${e}`);
668 | }
669 | }
670 | }
671 |
672 | export default Feed;
673 |
--------------------------------------------------------------------------------
/src/clients/feed/index.ts:
--------------------------------------------------------------------------------
1 | import Knock from "../../knock";
2 | import Feed from "./feed";
3 | import { FeedClientOptions } from "./interfaces";
4 |
5 | class FeedClient {
6 | private instance: Knock;
7 |
8 | constructor(instance: Knock) {
9 | this.instance = instance;
10 | }
11 |
12 | initialize(feedChannelId: string, options: FeedClientOptions = {}) {
13 | return new Feed(this.instance, feedChannelId, options);
14 | }
15 | }
16 |
17 | export { Feed };
18 | export default FeedClient;
19 |
--------------------------------------------------------------------------------
/src/clients/feed/interfaces.ts:
--------------------------------------------------------------------------------
1 | import { Activity, GenericData, PageInfo, Recipient } from "../../interfaces";
2 | import { NetworkStatus } from "../../networkStatus";
3 |
4 | // Specific feed interfaces
5 |
6 | export interface FeedClientOptions {
7 | before?: string;
8 | after?: string;
9 | page_size?: number;
10 | status?: "unread" | "read" | "unseen" | "seen" | "all";
11 | // Optionally scope all notifications to a particular source only
12 | source?: string;
13 | // Optionally scope all requests to a particular tenant
14 | tenant?: string;
15 | // Optionally scope to notifications with any tenancy or no tenancy
16 | has_tenant?: boolean;
17 | // Optionally scope to notifications with any of the categories provided
18 | workflow_categories?: string[];
19 | // Optionally scope to a given archived status (defaults to `exclude`)
20 | archived?: "include" | "exclude" | "only";
21 | // Optionally scope all notifications that contain this argument as part of their trigger payload
22 | trigger_data?: GenericData;
23 | // Optionally enable cross browser feed updates for this feed
24 | __experimentalCrossBrowserUpdates?: boolean;
25 | }
26 |
27 | export type FetchFeedOptions = {
28 | __loadingType?: NetworkStatus.loading | NetworkStatus.fetchMore;
29 | __fetchSource?: "socket" | "http";
30 | } & Omit;
31 |
32 | export interface ContentBlock {
33 | content: string;
34 | rendered: string;
35 | type: "markdown" | "text";
36 | name: string;
37 | }
38 |
39 | export interface NotificationSource {
40 | key: string;
41 | version_id: string;
42 | }
43 |
44 | export interface FeedItem {
45 | __cursor: string;
46 | id: string;
47 | activities: Activity[];
48 | actors: Recipient[];
49 | blocks: ContentBlock[];
50 | inserted_at: string;
51 | updated_at: string;
52 | read_at: string | null;
53 | seen_at: string | null;
54 | archived_at: string | null;
55 | total_activities: number;
56 | total_actors: number;
57 | data: T | null;
58 | source: NotificationSource;
59 | tenant: string | null;
60 | }
61 |
62 | export interface FeedMetadata {
63 | total_count: number;
64 | unread_count: number;
65 | unseen_count: number;
66 | }
67 |
68 | export interface FeedResponse {
69 | entries: FeedItem[];
70 | meta: FeedMetadata;
71 | page_info: PageInfo;
72 | }
73 |
--------------------------------------------------------------------------------
/src/clients/feed/store.ts:
--------------------------------------------------------------------------------
1 | import create from "zustand/vanilla";
2 | import { NetworkStatus } from "../../networkStatus";
3 | import { FeedItem } from "./interfaces";
4 | import { FeedStoreState } from "./types";
5 | import { deduplicateItems, sortItems } from "./utils";
6 |
7 | function processItems(items: FeedItem[]) {
8 | const deduped = deduplicateItems(items);
9 | const sorted = sortItems(deduped);
10 |
11 | return sorted;
12 | }
13 |
14 | const defaultSetResultOptions = {
15 | shouldSetPage: true,
16 | shouldAppend: false,
17 | };
18 |
19 | const initialStoreState = {
20 | items: [],
21 | metadata: {
22 | total_count: 0,
23 | unread_count: 0,
24 | unseen_count: 0,
25 | },
26 | pageInfo: {
27 | before: null,
28 | after: null,
29 | page_size: 50,
30 | },
31 | };
32 |
33 | export default function createStore() {
34 | return create((set) => ({
35 | // Keeps track of all of the items loaded
36 | ...initialStoreState,
37 | // The network status indicates what's happening with the request
38 | networkStatus: NetworkStatus.ready,
39 | loading: false,
40 | // TODO: remove this function from the store as we're now using the
41 | // `setNetworkStatus` function to derive this information instead
42 | setLoading: (loading) => set(() => ({ loading })),
43 |
44 | setNetworkStatus: (networkStatus: NetworkStatus) =>
45 | set(() => ({
46 | networkStatus,
47 | loading: networkStatus === NetworkStatus.loading,
48 | })),
49 |
50 | setResult: (
51 | { entries, meta, page_info },
52 | options = defaultSetResultOptions,
53 | ) =>
54 | set((state) => {
55 | // We resort the list on set, so concating everything is fine (if a bit suboptimal)
56 | const items = options.shouldAppend
57 | ? processItems(state.items.concat(entries))
58 | : entries;
59 |
60 | return {
61 | items,
62 | metadata: meta,
63 | pageInfo: options.shouldSetPage ? page_info : state.pageInfo,
64 | loading: false,
65 | networkStatus: NetworkStatus.ready,
66 | };
67 | }),
68 |
69 | setMetadata: (metadata) => set(() => ({ metadata })),
70 |
71 | resetStore: (metadata = initialStoreState.metadata) =>
72 | set(() => ({ ...initialStoreState, metadata })),
73 |
74 | setItemAttrs: (itemIds, attrs) => {
75 | // Create a map for the items to the updates to be made
76 | const itemUpdatesMap: { [id: string]: object } = itemIds.reduce(
77 | (acc, itemId) => ({ ...acc, [itemId]: attrs }),
78 | {},
79 | );
80 |
81 | return set((state) => {
82 | const items = state.items.map((item) => {
83 | if (itemUpdatesMap[item.id]) {
84 | return { ...item, ...itemUpdatesMap[item.id] };
85 | }
86 |
87 | return item;
88 | });
89 |
90 | return { items };
91 | });
92 | },
93 | }));
94 | }
95 |
--------------------------------------------------------------------------------
/src/clients/feed/types.ts:
--------------------------------------------------------------------------------
1 | import { PageInfo } from "../../interfaces";
2 | import { NetworkStatus } from "../../networkStatus";
3 | import { FeedItem, FeedMetadata, FeedResponse } from "./interfaces";
4 |
5 | export type StoreFeedResultOptions = {
6 | shouldSetPage?: boolean;
7 | shouldAppend?: boolean;
8 | };
9 |
10 | export type FeedStoreState = {
11 | items: FeedItem[];
12 | pageInfo: PageInfo;
13 | metadata: FeedMetadata;
14 | loading: boolean;
15 | networkStatus: NetworkStatus;
16 | setResult: (response: FeedResponse, opts?: StoreFeedResultOptions) => void;
17 | setMetadata: (metadata: FeedMetadata) => void;
18 | setLoading: (loading: boolean) => void;
19 | setNetworkStatus: (networkStatus: NetworkStatus) => void;
20 | setItemAttrs: (itemIds: string[], attrs: object) => void;
21 | resetStore: (metadata?: FeedMetadata) => void;
22 | };
23 |
24 | export type FeedMessagesReceivedPayload = {
25 | metadata: FeedMetadata;
26 | };
27 |
28 | /*
29 | Event types:
30 | - `messages.new`: legacy event fired for all messages (feed items) received, real-time or not
31 | - `items.received.realtime`: all real-time items received via a socket update
32 | - `items.received.page`: invoked every time a page is fetched (like on initial load)
33 | */
34 | export type FeedRealTimeEvent = "messages.new";
35 |
36 | export type FeedEvent =
37 | | FeedRealTimeEvent
38 | | "items.received.page"
39 | | "items.received.realtime"
40 | | "items.archived"
41 | | "items.unarchived"
42 | | "items.seen"
43 | | "items.unseen"
44 | | "items.read"
45 | | "items.unread"
46 | | "items.all_archived"
47 | | "items.all_read"
48 | | "items.all_seen";
49 |
50 | // Because we can bind to wild card feed events, this is here to accomodate whatever can be bound to
51 | export type BindableFeedEvent = FeedEvent | "items.received.*" | "items.*";
52 |
53 | export type FeedEventPayload = {
54 | event: Omit;
55 | items: FeedItem[];
56 | metadata: FeedMetadata;
57 | };
58 |
59 | export type FeedRealTimeCallback = (resp: FeedResponse) => void;
60 |
61 | export type FeedEventCallback = (payload: FeedEventPayload) => void;
62 |
63 | export type FeedItemOrItems = FeedItem | FeedItem[];
64 |
--------------------------------------------------------------------------------
/src/clients/feed/utils.ts:
--------------------------------------------------------------------------------
1 | import { FeedItem } from "./interfaces";
2 |
3 | export function deduplicateItems(items: FeedItem[]): FeedItem[] {
4 | const seen = {};
5 | const values: FeedItem[] = [];
6 |
7 | return items.reduce((acc, item) => {
8 | if (seen[item.id]) {
9 | return acc;
10 | }
11 |
12 | seen[item.id] = true;
13 | return [...acc, item];
14 | }, values);
15 | }
16 |
17 | export function sortItems(items: FeedItem[]) {
18 | return items.sort((a, b) => {
19 | return (
20 | new Date(b.inserted_at).getTime() - new Date(a.inserted_at).getTime()
21 | );
22 | });
23 | }
24 |
--------------------------------------------------------------------------------
/src/clients/preferences/index.ts:
--------------------------------------------------------------------------------
1 | import { ApiResponse } from "../../api";
2 | import Knock from "../../knock";
3 | import {
4 | ChannelTypePreferences,
5 | ChannelType,
6 | PreferenceOptions,
7 | SetPreferencesProperties,
8 | WorkflowPreferenceSetting,
9 | WorkflowPreferences,
10 | PreferenceSet,
11 | } from "./interfaces";
12 |
13 | const DEFAULT_PREFERENCE_SET_ID = "default";
14 |
15 | function buildUpdateParam(param: WorkflowPreferenceSetting) {
16 | if (typeof param === "object") {
17 | return param;
18 | }
19 |
20 | return { subscribed: param };
21 | }
22 |
23 | class Preferences {
24 | private instance: Knock;
25 |
26 | constructor(instance: Knock) {
27 | this.instance = instance;
28 | }
29 |
30 | /**
31 | * @deprecated Use `user.getAllPreferences()` instead
32 | */
33 | async getAll() {
34 | const result = await this.instance.client().makeRequest({
35 | method: "GET",
36 | url: `/v1/users/${this.instance.userId}/preferences`,
37 | });
38 |
39 | return this.handleResponse(result);
40 | }
41 |
42 | /**
43 | * @deprecated Use `user.getPreferences()` instead
44 | */
45 | async get(options: PreferenceOptions = {}) {
46 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
47 |
48 | const result = await this.instance.client().makeRequest({
49 | method: "GET",
50 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}`,
51 | });
52 |
53 | return this.handleResponse(result);
54 | }
55 |
56 | /**
57 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
58 | */
59 | async set(
60 | preferenceSet: SetPreferencesProperties,
61 | options: PreferenceOptions = {},
62 | ) {
63 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
64 |
65 | const result = await this.instance.client().makeRequest({
66 | method: "PUT",
67 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}`,
68 | data: preferenceSet,
69 | });
70 |
71 | return this.handleResponse(result);
72 | }
73 |
74 | /**
75 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
76 | */
77 | async setChannelTypes(
78 | channelTypePreferences: ChannelTypePreferences,
79 | options: PreferenceOptions = {},
80 | ) {
81 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
82 |
83 | const result = await this.instance.client().makeRequest({
84 | method: "PUT",
85 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/channel_types`,
86 | data: channelTypePreferences,
87 | });
88 |
89 | return this.handleResponse(result);
90 | }
91 |
92 | /**
93 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
94 | */
95 | async setChannelType(
96 | channelType: ChannelType,
97 | setting: boolean,
98 | options: PreferenceOptions = {},
99 | ) {
100 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
101 |
102 | const result = await this.instance.client().makeRequest({
103 | method: "PUT",
104 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/channel_types/${channelType}`,
105 | data: { subscribed: setting },
106 | });
107 |
108 | return this.handleResponse(result);
109 | }
110 |
111 | /**
112 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
113 | */
114 | async setWorkflows(
115 | workflowPreferences: WorkflowPreferences,
116 | options: PreferenceOptions = {},
117 | ) {
118 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
119 |
120 | const result = await this.instance.client().makeRequest({
121 | method: "PUT",
122 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/workflows`,
123 | data: workflowPreferences,
124 | });
125 |
126 | return this.handleResponse(result);
127 | }
128 |
129 | /**
130 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
131 | */
132 | async setWorkflow(
133 | workflowKey: string,
134 | setting: WorkflowPreferenceSetting,
135 | options: PreferenceOptions = {},
136 | ) {
137 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
138 | const params = buildUpdateParam(setting);
139 |
140 | const result = await this.instance.client().makeRequest({
141 | method: "PUT",
142 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/workflows/${workflowKey}`,
143 | data: params,
144 | });
145 |
146 | return this.handleResponse(result);
147 | }
148 |
149 | /**
150 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
151 | */
152 | async setCategories(
153 | categoryPreferences: WorkflowPreferences,
154 | options: PreferenceOptions = {},
155 | ) {
156 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
157 |
158 | const result = await this.instance.client().makeRequest({
159 | method: "PUT",
160 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/categories`,
161 | data: categoryPreferences,
162 | });
163 |
164 | return this.handleResponse(result);
165 | }
166 |
167 | /**
168 | * @deprecated Use `user.setPreferences(preferenceSet, options)` instead
169 | */
170 | async setCategory(
171 | categoryKey: string,
172 | setting: WorkflowPreferenceSetting,
173 | options: PreferenceOptions = {},
174 | ) {
175 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
176 | const params = buildUpdateParam(setting);
177 |
178 | const result = await this.instance.client().makeRequest({
179 | method: "PUT",
180 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}/categories/${categoryKey}`,
181 | data: params,
182 | });
183 |
184 | return this.handleResponse(result);
185 | }
186 |
187 | private handleResponse(response: ApiResponse) {
188 | if (response.statusCode === "error") {
189 | throw new Error(response.error || response.body);
190 | }
191 |
192 | return response.body as PreferenceSet;
193 | }
194 | }
195 |
196 | export default Preferences;
197 |
--------------------------------------------------------------------------------
/src/clients/preferences/interfaces.ts:
--------------------------------------------------------------------------------
1 | // Channel types supported in Knock
2 | // TODO: it would be great to pull this in from an external location
3 | export type ChannelType =
4 | | "email"
5 | | "in_app_feed"
6 | | "sms"
7 | | "push"
8 | | "chat"
9 | | "http";
10 |
11 | export type ChannelTypePreferences = {
12 | [K in ChannelType]?: boolean;
13 | };
14 |
15 | export type WorkflowPreferenceSetting =
16 | | boolean
17 | | { channel_types: ChannelTypePreferences };
18 |
19 | export type WorkflowPreferences = Partial<
20 | Record
21 | >;
22 |
23 | export interface SetPreferencesProperties {
24 | workflows: WorkflowPreferences;
25 | categories: WorkflowPreferences;
26 | channel_types: ChannelTypePreferences;
27 | }
28 |
29 | export interface PreferenceSet {
30 | id: string;
31 | categories: WorkflowPreferences;
32 | workflows: WorkflowPreferences;
33 | channel_types: ChannelTypePreferences;
34 | }
35 |
36 | export interface PreferenceOptions {
37 | preferenceSet?: string;
38 | }
39 |
40 | export interface GetPreferencesOptions extends PreferenceOptions {
41 | tenant?: string;
42 | }
43 |
--------------------------------------------------------------------------------
/src/clients/users/index.ts:
--------------------------------------------------------------------------------
1 | import { ApiResponse } from "../../api";
2 | import { ChannelData } from "../../interfaces";
3 | import Knock from "../../knock";
4 | import {
5 | GetPreferencesOptions,
6 | PreferenceOptions,
7 | PreferenceSet,
8 | SetPreferencesProperties,
9 | } from "../preferences/interfaces";
10 | import { GetChannelDataInput, SetChannelDataInput } from "./interfaces";
11 |
12 | const DEFAULT_PREFERENCE_SET_ID = "default";
13 |
14 | class UserClient {
15 | private instance: Knock;
16 |
17 | constructor(instance: Knock) {
18 | this.instance = instance;
19 | }
20 |
21 | async getAllPreferences() {
22 | const result = await this.instance.client().makeRequest({
23 | method: "GET",
24 | url: `/v1/users/${this.instance.userId}/preferences`,
25 | });
26 |
27 | return this.handleResponse(result);
28 | }
29 |
30 | async getPreferences(
31 | options: GetPreferencesOptions = {},
32 | ): Promise {
33 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
34 |
35 | const result = await this.instance.client().makeRequest({
36 | method: "GET",
37 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}`,
38 | params: { tenant: options.tenant },
39 | });
40 |
41 | return this.handleResponse(result);
42 | }
43 |
44 | async setPreferences(
45 | preferenceSet: SetPreferencesProperties,
46 | options: PreferenceOptions = {},
47 | ): Promise {
48 | const preferenceSetId = options.preferenceSet || DEFAULT_PREFERENCE_SET_ID;
49 |
50 | const result = await this.instance.client().makeRequest({
51 | method: "PUT",
52 | url: `/v1/users/${this.instance.userId}/preferences/${preferenceSetId}`,
53 | data: preferenceSet,
54 | });
55 |
56 | return this.handleResponse(result);
57 | }
58 |
59 | async getChannelData(params: GetChannelDataInput) {
60 | const result = await this.instance.client().makeRequest({
61 | method: "GET",
62 | url: `/v1/users/${this.instance.userId}/channel_data/${params.channelId}`,
63 | });
64 |
65 | return this.handleResponse>(result);
66 | }
67 |
68 | async setChannelData({
69 | channelId,
70 | channelData,
71 | }: SetChannelDataInput) {
72 | const result = await this.instance.client().makeRequest({
73 | method: "PUT",
74 | url: `/v1/users/${this.instance.userId}/channel_data/${channelId}`,
75 | data: { data: channelData },
76 | });
77 |
78 | return this.handleResponse>(result);
79 | }
80 |
81 | private handleResponse(response: ApiResponse) {
82 | if (response.statusCode === "error") {
83 | throw new Error(response.error || response.body);
84 | }
85 |
86 | return response.body as T;
87 | }
88 | }
89 |
90 | export default UserClient;
91 |
--------------------------------------------------------------------------------
/src/clients/users/interfaces.ts:
--------------------------------------------------------------------------------
1 | export interface SetChannelDataInput {
2 | channelId: string;
3 | channelData: Record;
4 | }
5 |
6 | export interface GetChannelDataInput {
7 | channelId: string;
8 | }
9 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | import Knock from "./knock";
2 | import FeedClient, { Feed } from "./clients/feed";
3 |
4 | export * from "./interfaces";
5 | export * from "./clients/feed/types";
6 | export * from "./clients/feed/interfaces";
7 | export * from "./clients/preferences/interfaces";
8 | export * from "./clients/users";
9 | export * from "./networkStatus";
10 |
11 | export default Knock;
12 | export { Feed, FeedClient };
13 |
--------------------------------------------------------------------------------
/src/interfaces.ts:
--------------------------------------------------------------------------------
1 | export interface KnockOptions {
2 | host?: string;
3 | }
4 |
5 | export type GenericData = {
6 | // eslint-disable-next-line
7 | [x: string]: any;
8 | };
9 |
10 | export interface KnockObject {
11 | id: string;
12 | collection: string;
13 | properties: T;
14 | updated_at: string;
15 | created_at: string | null;
16 | }
17 |
18 | export interface User extends GenericData {
19 | id: string;
20 | email: string | null;
21 | name: string | null;
22 | phone_number: string | null;
23 | avatar: string | null;
24 | updated_at: string;
25 | created_at: string | null;
26 | }
27 |
28 | export interface PageInfo {
29 | after: string | null;
30 | before: string | null;
31 | page_size: number;
32 | }
33 |
34 | export type Recipient = User | KnockObject;
35 |
36 | export interface Activity {
37 | id: string;
38 | inserted_at: string;
39 | updated_at: string;
40 | recipient: Recipient;
41 | actor: Recipient | null;
42 | data: T | null;
43 | }
44 |
45 | export interface ChannelData {
46 | channel_id: string;
47 | data: T;
48 | }
49 |
--------------------------------------------------------------------------------
/src/knock.ts:
--------------------------------------------------------------------------------
1 | import ApiClient from "./api";
2 | import FeedClient from "./clients/feed";
3 | import Preferences from "./clients/preferences";
4 | import UserClient from "./clients/users";
5 | import { KnockOptions } from "./interfaces";
6 |
7 | const DEFAULT_HOST = "https://api.knock.app";
8 |
9 | class Knock {
10 | private host: string;
11 | private apiClient: ApiClient | null = null;
12 | public userId: string | undefined;
13 | public userToken: string | undefined;
14 |
15 | readonly feeds = new FeedClient(this);
16 | readonly preferences = new Preferences(this);
17 | readonly user = new UserClient(this);
18 |
19 | constructor(readonly apiKey: string, options: KnockOptions = {}) {
20 | this.host = options.host || DEFAULT_HOST;
21 |
22 | // Fail loudly if we're using the wrong API key
23 | if (this.apiKey && this.apiKey.startsWith("sk_")) {
24 | throw new Error(
25 | "[Knock] You are using your secret API key on the client. Please use the public key.",
26 | );
27 | }
28 | }
29 |
30 | client() {
31 | if (!this.userId) {
32 | console.warn(
33 | `[Knock] You must call authenticate(userId, userToken) first before trying to make a request.
34 | Typically you'll see this message when you're creating a feed instance before having called
35 | authenticate with a user Id and token. That means we won't know who to issue the request
36 | to Knock on behalf of.
37 | `,
38 | );
39 | }
40 |
41 | // Initiate a new API client if we don't have one yet
42 | if (!this.apiClient) {
43 | this.apiClient = new ApiClient({
44 | apiKey: this.apiKey,
45 | host: this.host,
46 | userToken: this.userToken,
47 | });
48 | }
49 |
50 | return this.apiClient;
51 | }
52 |
53 | /*
54 | Authenticates the current user. In non-sandbox environments
55 | the userToken must be specified.
56 | */
57 | authenticate(userId: string, userToken?: string) {
58 | this.userId = userId;
59 | this.userToken = userToken;
60 |
61 | return;
62 | }
63 |
64 | /*
65 | Returns whether or this Knock instance is authenticated. Passing `true` will check the presence
66 | of the userToken as well.
67 | */
68 | isAuthenticated(checkUserToken = false) {
69 | return checkUserToken ? this.userId && this.userToken : this.userId;
70 | }
71 |
72 | // Used to teardown any connected instances
73 | teardown() {
74 | if (!this.apiClient) return;
75 | if (this.apiClient.socket) {
76 | this.apiClient.socket.disconnect();
77 | }
78 | }
79 | }
80 |
81 | export default Knock;
82 |
--------------------------------------------------------------------------------
/src/networkStatus.ts:
--------------------------------------------------------------------------------
1 | export enum NetworkStatus {
2 | // Performing a top level loading operation
3 | loading = "loading",
4 |
5 | // Performing a fetch more on some already loaded data
6 | fetchMore = "fetchMore",
7 |
8 | // No operation is currently in progress
9 | ready = "ready",
10 |
11 | // The last operation failed with an error
12 | error = "error",
13 | }
14 |
15 | export function isRequestInFlight(networkStatus: NetworkStatus): boolean {
16 | return [NetworkStatus.loading, NetworkStatus.fetchMore].includes(
17 | networkStatus,
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "module": "esnext",
5 | "lib": ["dom", "esnext"],
6 | "declaration": true,
7 | "sourceMap": true,
8 | "moduleResolution": "node",
9 | "skipLibCheck": true,
10 | "strict": true,
11 | "noFallthroughCasesInSwitch": true,
12 | "suppressImplicitAnyIndexErrors": true,
13 | "noImplicitAny": true,
14 | "strictFunctionTypes": true,
15 | "strictNullChecks": true,
16 | "strictPropertyInitialization": true,
17 | "jsx": "react",
18 | "esModuleInterop": true,
19 | "resolveJsonModule": true,
20 | "allowSyntheticDefaultImports": true,
21 | "downlevelIteration": true,
22 | "declarationMap": true
23 | },
24 | "include": ["src/**/*"],
25 | "exclude": ["node_modules"],
26 | }
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/cli@^7.16.7":
6 | version "7.16.7"
7 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.16.7.tgz#4184b5ec6a22106e9dd64bbcaa2eb22675ff595d"
8 | integrity sha512-0iBF+G2Qml0y3mY5dirolyToLSR88a/KB6F2Gm8J/lOnyL8wbEOHak0DHF8gjc9XZGgTDGv/jYXNiapvsYyHTA==
9 | dependencies:
10 | commander "^4.0.1"
11 | convert-source-map "^1.1.0"
12 | fs-readdir-recursive "^1.1.0"
13 | glob "^7.0.0"
14 | make-dir "^2.1.0"
15 | slash "^2.0.0"
16 | source-map "^0.5.0"
17 | optionalDependencies:
18 | "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
19 | chokidar "^3.4.0"
20 |
21 | "@babel/code-frame@7.12.11":
22 | version "7.12.11"
23 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
24 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
25 | dependencies:
26 | "@babel/highlight" "^7.10.4"
27 |
28 | "@babel/code-frame@^7.12.13":
29 | version "7.12.13"
30 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
31 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
32 | dependencies:
33 | "@babel/highlight" "^7.12.13"
34 |
35 | "@babel/code-frame@^7.16.7":
36 | version "7.16.7"
37 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
38 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
39 | dependencies:
40 | "@babel/highlight" "^7.16.7"
41 |
42 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15":
43 | version "7.14.0"
44 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
45 | integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
46 |
47 | "@babel/compat-data@^7.16.4":
48 | version "7.16.4"
49 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e"
50 | integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==
51 |
52 | "@babel/core@^7.16.7":
53 | version "7.16.7"
54 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.7.tgz#db990f931f6d40cb9b87a0dc7d2adc749f1dcbcf"
55 | integrity sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==
56 | dependencies:
57 | "@babel/code-frame" "^7.16.7"
58 | "@babel/generator" "^7.16.7"
59 | "@babel/helper-compilation-targets" "^7.16.7"
60 | "@babel/helper-module-transforms" "^7.16.7"
61 | "@babel/helpers" "^7.16.7"
62 | "@babel/parser" "^7.16.7"
63 | "@babel/template" "^7.16.7"
64 | "@babel/traverse" "^7.16.7"
65 | "@babel/types" "^7.16.7"
66 | convert-source-map "^1.7.0"
67 | debug "^4.1.0"
68 | gensync "^1.0.0-beta.2"
69 | json5 "^2.1.2"
70 | semver "^6.3.0"
71 | source-map "^0.5.0"
72 |
73 | "@babel/generator@^7.14.0":
74 | version "7.14.1"
75 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.1.tgz#1f99331babd65700183628da186f36f63d615c93"
76 | integrity sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ==
77 | dependencies:
78 | "@babel/types" "^7.14.1"
79 | jsesc "^2.5.1"
80 | source-map "^0.5.0"
81 |
82 | "@babel/generator@^7.16.7":
83 | version "7.16.7"
84 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.7.tgz#b42bf46a3079fa65e1544135f32e7958f048adbb"
85 | integrity sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==
86 | dependencies:
87 | "@babel/types" "^7.16.7"
88 | jsesc "^2.5.1"
89 | source-map "^0.5.0"
90 |
91 | "@babel/helper-annotate-as-pure@^7.12.13":
92 | version "7.12.13"
93 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
94 | integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
95 | dependencies:
96 | "@babel/types" "^7.12.13"
97 |
98 | "@babel/helper-annotate-as-pure@^7.16.7":
99 | version "7.16.7"
100 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
101 | integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
102 | dependencies:
103 | "@babel/types" "^7.16.7"
104 |
105 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
106 | version "7.16.7"
107 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
108 | integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
109 | dependencies:
110 | "@babel/helper-explode-assignable-expression" "^7.16.7"
111 | "@babel/types" "^7.16.7"
112 |
113 | "@babel/helper-compilation-targets@^7.13.0":
114 | version "7.13.16"
115 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
116 | integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
117 | dependencies:
118 | "@babel/compat-data" "^7.13.15"
119 | "@babel/helper-validator-option" "^7.12.17"
120 | browserslist "^4.14.5"
121 | semver "^6.3.0"
122 |
123 | "@babel/helper-compilation-targets@^7.16.7":
124 | version "7.16.7"
125 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b"
126 | integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==
127 | dependencies:
128 | "@babel/compat-data" "^7.16.4"
129 | "@babel/helper-validator-option" "^7.16.7"
130 | browserslist "^4.17.5"
131 | semver "^6.3.0"
132 |
133 | "@babel/helper-create-class-features-plugin@^7.16.7":
134 | version "7.16.7"
135 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz#9c5b34b53a01f2097daf10678d65135c1b9f84ba"
136 | integrity sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==
137 | dependencies:
138 | "@babel/helper-annotate-as-pure" "^7.16.7"
139 | "@babel/helper-environment-visitor" "^7.16.7"
140 | "@babel/helper-function-name" "^7.16.7"
141 | "@babel/helper-member-expression-to-functions" "^7.16.7"
142 | "@babel/helper-optimise-call-expression" "^7.16.7"
143 | "@babel/helper-replace-supers" "^7.16.7"
144 | "@babel/helper-split-export-declaration" "^7.16.7"
145 |
146 | "@babel/helper-create-regexp-features-plugin@^7.12.13":
147 | version "7.12.17"
148 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7"
149 | integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==
150 | dependencies:
151 | "@babel/helper-annotate-as-pure" "^7.12.13"
152 | regexpu-core "^4.7.1"
153 |
154 | "@babel/helper-create-regexp-features-plugin@^7.16.7":
155 | version "7.16.7"
156 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz#0cb82b9bac358eb73bfbd73985a776bfa6b14d48"
157 | integrity sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==
158 | dependencies:
159 | "@babel/helper-annotate-as-pure" "^7.16.7"
160 | regexpu-core "^4.7.1"
161 |
162 | "@babel/helper-define-polyfill-provider@^0.3.0":
163 | version "0.3.0"
164 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz#c5b10cf4b324ff840140bb07e05b8564af2ae971"
165 | integrity sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==
166 | dependencies:
167 | "@babel/helper-compilation-targets" "^7.13.0"
168 | "@babel/helper-module-imports" "^7.12.13"
169 | "@babel/helper-plugin-utils" "^7.13.0"
170 | "@babel/traverse" "^7.13.0"
171 | debug "^4.1.1"
172 | lodash.debounce "^4.0.8"
173 | resolve "^1.14.2"
174 | semver "^6.1.2"
175 |
176 | "@babel/helper-environment-visitor@^7.16.7":
177 | version "7.16.7"
178 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7"
179 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==
180 | dependencies:
181 | "@babel/types" "^7.16.7"
182 |
183 | "@babel/helper-explode-assignable-expression@^7.16.7":
184 | version "7.16.7"
185 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
186 | integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
187 | dependencies:
188 | "@babel/types" "^7.16.7"
189 |
190 | "@babel/helper-function-name@^7.12.13":
191 | version "7.12.13"
192 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"
193 | integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
194 | dependencies:
195 | "@babel/helper-get-function-arity" "^7.12.13"
196 | "@babel/template" "^7.12.13"
197 | "@babel/types" "^7.12.13"
198 |
199 | "@babel/helper-function-name@^7.16.7":
200 | version "7.16.7"
201 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f"
202 | integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==
203 | dependencies:
204 | "@babel/helper-get-function-arity" "^7.16.7"
205 | "@babel/template" "^7.16.7"
206 | "@babel/types" "^7.16.7"
207 |
208 | "@babel/helper-get-function-arity@^7.12.13":
209 | version "7.12.13"
210 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
211 | integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
212 | dependencies:
213 | "@babel/types" "^7.12.13"
214 |
215 | "@babel/helper-get-function-arity@^7.16.7":
216 | version "7.16.7"
217 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419"
218 | integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==
219 | dependencies:
220 | "@babel/types" "^7.16.7"
221 |
222 | "@babel/helper-hoist-variables@^7.16.7":
223 | version "7.16.7"
224 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
225 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
226 | dependencies:
227 | "@babel/types" "^7.16.7"
228 |
229 | "@babel/helper-member-expression-to-functions@^7.16.7":
230 | version "7.16.7"
231 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz#42b9ca4b2b200123c3b7e726b0ae5153924905b0"
232 | integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==
233 | dependencies:
234 | "@babel/types" "^7.16.7"
235 |
236 | "@babel/helper-module-imports@^7.12.13":
237 | version "7.13.12"
238 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
239 | integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
240 | dependencies:
241 | "@babel/types" "^7.13.12"
242 |
243 | "@babel/helper-module-imports@^7.16.7":
244 | version "7.16.7"
245 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
246 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
247 | dependencies:
248 | "@babel/types" "^7.16.7"
249 |
250 | "@babel/helper-module-transforms@^7.16.7":
251 | version "7.16.7"
252 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41"
253 | integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==
254 | dependencies:
255 | "@babel/helper-environment-visitor" "^7.16.7"
256 | "@babel/helper-module-imports" "^7.16.7"
257 | "@babel/helper-simple-access" "^7.16.7"
258 | "@babel/helper-split-export-declaration" "^7.16.7"
259 | "@babel/helper-validator-identifier" "^7.16.7"
260 | "@babel/template" "^7.16.7"
261 | "@babel/traverse" "^7.16.7"
262 | "@babel/types" "^7.16.7"
263 |
264 | "@babel/helper-optimise-call-expression@^7.16.7":
265 | version "7.16.7"
266 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2"
267 | integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==
268 | dependencies:
269 | "@babel/types" "^7.16.7"
270 |
271 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
272 | version "7.13.0"
273 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
274 | integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
275 |
276 | "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7":
277 | version "7.16.7"
278 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
279 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
280 |
281 | "@babel/helper-remap-async-to-generator@^7.16.7":
282 | version "7.16.7"
283 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.7.tgz#5ce2416990d55eb6e099128338848ae8ffa58a9a"
284 | integrity sha512-C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg==
285 | dependencies:
286 | "@babel/helper-annotate-as-pure" "^7.16.7"
287 | "@babel/helper-wrap-function" "^7.16.7"
288 | "@babel/types" "^7.16.7"
289 |
290 | "@babel/helper-replace-supers@^7.16.7":
291 | version "7.16.7"
292 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1"
293 | integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==
294 | dependencies:
295 | "@babel/helper-environment-visitor" "^7.16.7"
296 | "@babel/helper-member-expression-to-functions" "^7.16.7"
297 | "@babel/helper-optimise-call-expression" "^7.16.7"
298 | "@babel/traverse" "^7.16.7"
299 | "@babel/types" "^7.16.7"
300 |
301 | "@babel/helper-simple-access@^7.16.7":
302 | version "7.16.7"
303 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7"
304 | integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==
305 | dependencies:
306 | "@babel/types" "^7.16.7"
307 |
308 | "@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
309 | version "7.16.0"
310 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
311 | integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
312 | dependencies:
313 | "@babel/types" "^7.16.0"
314 |
315 | "@babel/helper-split-export-declaration@^7.12.13":
316 | version "7.12.13"
317 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
318 | integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
319 | dependencies:
320 | "@babel/types" "^7.12.13"
321 |
322 | "@babel/helper-split-export-declaration@^7.16.7":
323 | version "7.16.7"
324 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
325 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
326 | dependencies:
327 | "@babel/types" "^7.16.7"
328 |
329 | "@babel/helper-validator-identifier@^7.14.0":
330 | version "7.14.0"
331 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
332 | integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
333 |
334 | "@babel/helper-validator-identifier@^7.16.7":
335 | version "7.16.7"
336 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
337 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
338 |
339 | "@babel/helper-validator-option@^7.12.17":
340 | version "7.12.17"
341 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
342 | integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
343 |
344 | "@babel/helper-validator-option@^7.16.7":
345 | version "7.16.7"
346 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
347 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==
348 |
349 | "@babel/helper-wrap-function@^7.16.7":
350 | version "7.16.7"
351 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.7.tgz#8ddf9eaa770ed43de4bc3687f3f3b0d6d5ecf014"
352 | integrity sha512-7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw==
353 | dependencies:
354 | "@babel/helper-function-name" "^7.16.7"
355 | "@babel/template" "^7.16.7"
356 | "@babel/traverse" "^7.16.7"
357 | "@babel/types" "^7.16.7"
358 |
359 | "@babel/helpers@^7.16.7":
360 | version "7.16.7"
361 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.7.tgz#7e3504d708d50344112767c3542fc5e357fffefc"
362 | integrity sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==
363 | dependencies:
364 | "@babel/template" "^7.16.7"
365 | "@babel/traverse" "^7.16.7"
366 | "@babel/types" "^7.16.7"
367 |
368 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7":
369 | version "7.16.7"
370 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b"
371 | integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==
372 | dependencies:
373 | "@babel/helper-validator-identifier" "^7.16.7"
374 | chalk "^2.0.0"
375 | js-tokens "^4.0.0"
376 |
377 | "@babel/highlight@^7.12.13":
378 | version "7.14.0"
379 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
380 | integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
381 | dependencies:
382 | "@babel/helper-validator-identifier" "^7.14.0"
383 | chalk "^2.0.0"
384 | js-tokens "^4.0.0"
385 |
386 | "@babel/parser@^7.12.13", "@babel/parser@^7.14.0":
387 | version "7.14.1"
388 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.1.tgz#1bd644b5db3f5797c4479d89ec1817fe02b84c47"
389 | integrity sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==
390 |
391 | "@babel/parser@^7.16.7":
392 | version "7.16.7"
393 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.7.tgz#d372dda9c89fcec340a82630a9f533f2fe15877e"
394 | integrity sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==
395 |
396 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7":
397 | version "7.16.7"
398 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz#4eda6d6c2a0aa79c70fa7b6da67763dfe2141050"
399 | integrity sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==
400 | dependencies:
401 | "@babel/helper-plugin-utils" "^7.16.7"
402 |
403 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7":
404 | version "7.16.7"
405 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz#cc001234dfc139ac45f6bcf801866198c8c72ff9"
406 | integrity sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==
407 | dependencies:
408 | "@babel/helper-plugin-utils" "^7.16.7"
409 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
410 | "@babel/plugin-proposal-optional-chaining" "^7.16.7"
411 |
412 | "@babel/plugin-proposal-async-generator-functions@^7.16.7":
413 | version "7.16.7"
414 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.7.tgz#739adc1212a9e4892de440cd7dfffb06172df78d"
415 | integrity sha512-TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw==
416 | dependencies:
417 | "@babel/helper-plugin-utils" "^7.16.7"
418 | "@babel/helper-remap-async-to-generator" "^7.16.7"
419 | "@babel/plugin-syntax-async-generators" "^7.8.4"
420 |
421 | "@babel/plugin-proposal-class-properties@^7.16.7":
422 | version "7.16.7"
423 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz#925cad7b3b1a2fcea7e59ecc8eb5954f961f91b0"
424 | integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==
425 | dependencies:
426 | "@babel/helper-create-class-features-plugin" "^7.16.7"
427 | "@babel/helper-plugin-utils" "^7.16.7"
428 |
429 | "@babel/plugin-proposal-class-static-block@^7.16.7":
430 | version "7.16.7"
431 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz#712357570b612106ef5426d13dc433ce0f200c2a"
432 | integrity sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==
433 | dependencies:
434 | "@babel/helper-create-class-features-plugin" "^7.16.7"
435 | "@babel/helper-plugin-utils" "^7.16.7"
436 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
437 |
438 | "@babel/plugin-proposal-dynamic-import@^7.16.7":
439 | version "7.16.7"
440 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2"
441 | integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==
442 | dependencies:
443 | "@babel/helper-plugin-utils" "^7.16.7"
444 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
445 |
446 | "@babel/plugin-proposal-export-namespace-from@^7.16.7":
447 | version "7.16.7"
448 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz#09de09df18445a5786a305681423ae63507a6163"
449 | integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==
450 | dependencies:
451 | "@babel/helper-plugin-utils" "^7.16.7"
452 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
453 |
454 | "@babel/plugin-proposal-json-strings@^7.16.7":
455 | version "7.16.7"
456 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz#9732cb1d17d9a2626a08c5be25186c195b6fa6e8"
457 | integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==
458 | dependencies:
459 | "@babel/helper-plugin-utils" "^7.16.7"
460 | "@babel/plugin-syntax-json-strings" "^7.8.3"
461 |
462 | "@babel/plugin-proposal-logical-assignment-operators@^7.16.7":
463 | version "7.16.7"
464 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz#be23c0ba74deec1922e639832904be0bea73cdea"
465 | integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==
466 | dependencies:
467 | "@babel/helper-plugin-utils" "^7.16.7"
468 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
469 |
470 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7":
471 | version "7.16.7"
472 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz#141fc20b6857e59459d430c850a0011e36561d99"
473 | integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==
474 | dependencies:
475 | "@babel/helper-plugin-utils" "^7.16.7"
476 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
477 |
478 | "@babel/plugin-proposal-numeric-separator@^7.16.7":
479 | version "7.16.7"
480 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9"
481 | integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==
482 | dependencies:
483 | "@babel/helper-plugin-utils" "^7.16.7"
484 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
485 |
486 | "@babel/plugin-proposal-object-rest-spread@^7.16.7":
487 | version "7.16.7"
488 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz#94593ef1ddf37021a25bdcb5754c4a8d534b01d8"
489 | integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==
490 | dependencies:
491 | "@babel/compat-data" "^7.16.4"
492 | "@babel/helper-compilation-targets" "^7.16.7"
493 | "@babel/helper-plugin-utils" "^7.16.7"
494 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
495 | "@babel/plugin-transform-parameters" "^7.16.7"
496 |
497 | "@babel/plugin-proposal-optional-catch-binding@^7.16.7":
498 | version "7.16.7"
499 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf"
500 | integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==
501 | dependencies:
502 | "@babel/helper-plugin-utils" "^7.16.7"
503 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
504 |
505 | "@babel/plugin-proposal-optional-chaining@^7.16.7":
506 | version "7.16.7"
507 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz#7cd629564724816c0e8a969535551f943c64c39a"
508 | integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==
509 | dependencies:
510 | "@babel/helper-plugin-utils" "^7.16.7"
511 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
512 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
513 |
514 | "@babel/plugin-proposal-private-methods@^7.16.7":
515 | version "7.16.7"
516 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz#e418e3aa6f86edd6d327ce84eff188e479f571e0"
517 | integrity sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==
518 | dependencies:
519 | "@babel/helper-create-class-features-plugin" "^7.16.7"
520 | "@babel/helper-plugin-utils" "^7.16.7"
521 |
522 | "@babel/plugin-proposal-private-property-in-object@^7.16.7":
523 | version "7.16.7"
524 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz#b0b8cef543c2c3d57e59e2c611994861d46a3fce"
525 | integrity sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==
526 | dependencies:
527 | "@babel/helper-annotate-as-pure" "^7.16.7"
528 | "@babel/helper-create-class-features-plugin" "^7.16.7"
529 | "@babel/helper-plugin-utils" "^7.16.7"
530 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
531 |
532 | "@babel/plugin-proposal-unicode-property-regex@^7.16.7":
533 | version "7.16.7"
534 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz#635d18eb10c6214210ffc5ff4932552de08188a2"
535 | integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==
536 | dependencies:
537 | "@babel/helper-create-regexp-features-plugin" "^7.16.7"
538 | "@babel/helper-plugin-utils" "^7.16.7"
539 |
540 | "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
541 | version "7.12.13"
542 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
543 | integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
544 | dependencies:
545 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
546 | "@babel/helper-plugin-utils" "^7.12.13"
547 |
548 | "@babel/plugin-syntax-async-generators@^7.8.4":
549 | version "7.8.4"
550 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
551 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
552 | dependencies:
553 | "@babel/helper-plugin-utils" "^7.8.0"
554 |
555 | "@babel/plugin-syntax-class-properties@^7.12.13":
556 | version "7.12.13"
557 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
558 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
559 | dependencies:
560 | "@babel/helper-plugin-utils" "^7.12.13"
561 |
562 | "@babel/plugin-syntax-class-static-block@^7.14.5":
563 | version "7.14.5"
564 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
565 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
566 | dependencies:
567 | "@babel/helper-plugin-utils" "^7.14.5"
568 |
569 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
570 | version "7.8.3"
571 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
572 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
573 | dependencies:
574 | "@babel/helper-plugin-utils" "^7.8.0"
575 |
576 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
577 | version "7.8.3"
578 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
579 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
580 | dependencies:
581 | "@babel/helper-plugin-utils" "^7.8.3"
582 |
583 | "@babel/plugin-syntax-json-strings@^7.8.3":
584 | version "7.8.3"
585 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
586 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
587 | dependencies:
588 | "@babel/helper-plugin-utils" "^7.8.0"
589 |
590 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
591 | version "7.10.4"
592 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
593 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
594 | dependencies:
595 | "@babel/helper-plugin-utils" "^7.10.4"
596 |
597 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
598 | version "7.8.3"
599 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
600 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
601 | dependencies:
602 | "@babel/helper-plugin-utils" "^7.8.0"
603 |
604 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
605 | version "7.10.4"
606 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
607 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
608 | dependencies:
609 | "@babel/helper-plugin-utils" "^7.10.4"
610 |
611 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
612 | version "7.8.3"
613 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
614 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
615 | dependencies:
616 | "@babel/helper-plugin-utils" "^7.8.0"
617 |
618 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
619 | version "7.8.3"
620 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
621 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
622 | dependencies:
623 | "@babel/helper-plugin-utils" "^7.8.0"
624 |
625 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
626 | version "7.8.3"
627 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
628 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
629 | dependencies:
630 | "@babel/helper-plugin-utils" "^7.8.0"
631 |
632 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
633 | version "7.14.5"
634 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
635 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
636 | dependencies:
637 | "@babel/helper-plugin-utils" "^7.14.5"
638 |
639 | "@babel/plugin-syntax-top-level-await@^7.14.5":
640 | version "7.14.5"
641 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
642 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
643 | dependencies:
644 | "@babel/helper-plugin-utils" "^7.14.5"
645 |
646 | "@babel/plugin-syntax-typescript@^7.16.7":
647 | version "7.16.7"
648 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz#39c9b55ee153151990fb038651d58d3fd03f98f8"
649 | integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==
650 | dependencies:
651 | "@babel/helper-plugin-utils" "^7.16.7"
652 |
653 | "@babel/plugin-transform-arrow-functions@^7.16.7":
654 | version "7.16.7"
655 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz#44125e653d94b98db76369de9c396dc14bef4154"
656 | integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==
657 | dependencies:
658 | "@babel/helper-plugin-utils" "^7.16.7"
659 |
660 | "@babel/plugin-transform-async-to-generator@^7.16.7":
661 | version "7.16.7"
662 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.7.tgz#646e1262ac341b587ff5449844d4492dbb10ac4b"
663 | integrity sha512-pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg==
664 | dependencies:
665 | "@babel/helper-module-imports" "^7.16.7"
666 | "@babel/helper-plugin-utils" "^7.16.7"
667 | "@babel/helper-remap-async-to-generator" "^7.16.7"
668 |
669 | "@babel/plugin-transform-block-scoped-functions@^7.16.7":
670 | version "7.16.7"
671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620"
672 | integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==
673 | dependencies:
674 | "@babel/helper-plugin-utils" "^7.16.7"
675 |
676 | "@babel/plugin-transform-block-scoping@^7.16.7":
677 | version "7.16.7"
678 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz#f50664ab99ddeaee5bc681b8f3a6ea9d72ab4f87"
679 | integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==
680 | dependencies:
681 | "@babel/helper-plugin-utils" "^7.16.7"
682 |
683 | "@babel/plugin-transform-classes@^7.16.7":
684 | version "7.16.7"
685 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz#8f4b9562850cd973de3b498f1218796eb181ce00"
686 | integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==
687 | dependencies:
688 | "@babel/helper-annotate-as-pure" "^7.16.7"
689 | "@babel/helper-environment-visitor" "^7.16.7"
690 | "@babel/helper-function-name" "^7.16.7"
691 | "@babel/helper-optimise-call-expression" "^7.16.7"
692 | "@babel/helper-plugin-utils" "^7.16.7"
693 | "@babel/helper-replace-supers" "^7.16.7"
694 | "@babel/helper-split-export-declaration" "^7.16.7"
695 | globals "^11.1.0"
696 |
697 | "@babel/plugin-transform-computed-properties@^7.16.7":
698 | version "7.16.7"
699 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz#66dee12e46f61d2aae7a73710f591eb3df616470"
700 | integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==
701 | dependencies:
702 | "@babel/helper-plugin-utils" "^7.16.7"
703 |
704 | "@babel/plugin-transform-destructuring@^7.16.7":
705 | version "7.16.7"
706 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz#ca9588ae2d63978a4c29d3f33282d8603f618e23"
707 | integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==
708 | dependencies:
709 | "@babel/helper-plugin-utils" "^7.16.7"
710 |
711 | "@babel/plugin-transform-dotall-regex@^7.16.7":
712 | version "7.16.7"
713 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241"
714 | integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==
715 | dependencies:
716 | "@babel/helper-create-regexp-features-plugin" "^7.16.7"
717 | "@babel/helper-plugin-utils" "^7.16.7"
718 |
719 | "@babel/plugin-transform-dotall-regex@^7.4.4":
720 | version "7.12.13"
721 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
722 | integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
723 | dependencies:
724 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
725 | "@babel/helper-plugin-utils" "^7.12.13"
726 |
727 | "@babel/plugin-transform-duplicate-keys@^7.16.7":
728 | version "7.16.7"
729 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz#2207e9ca8f82a0d36a5a67b6536e7ef8b08823c9"
730 | integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==
731 | dependencies:
732 | "@babel/helper-plugin-utils" "^7.16.7"
733 |
734 | "@babel/plugin-transform-exponentiation-operator@^7.16.7":
735 | version "7.16.7"
736 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b"
737 | integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==
738 | dependencies:
739 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
740 | "@babel/helper-plugin-utils" "^7.16.7"
741 |
742 | "@babel/plugin-transform-for-of@^7.16.7":
743 | version "7.16.7"
744 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz#649d639d4617dff502a9a158c479b3b556728d8c"
745 | integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==
746 | dependencies:
747 | "@babel/helper-plugin-utils" "^7.16.7"
748 |
749 | "@babel/plugin-transform-function-name@^7.16.7":
750 | version "7.16.7"
751 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf"
752 | integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==
753 | dependencies:
754 | "@babel/helper-compilation-targets" "^7.16.7"
755 | "@babel/helper-function-name" "^7.16.7"
756 | "@babel/helper-plugin-utils" "^7.16.7"
757 |
758 | "@babel/plugin-transform-literals@^7.16.7":
759 | version "7.16.7"
760 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz#254c9618c5ff749e87cb0c0cef1a0a050c0bdab1"
761 | integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==
762 | dependencies:
763 | "@babel/helper-plugin-utils" "^7.16.7"
764 |
765 | "@babel/plugin-transform-member-expression-literals@^7.16.7":
766 | version "7.16.7"
767 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384"
768 | integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==
769 | dependencies:
770 | "@babel/helper-plugin-utils" "^7.16.7"
771 |
772 | "@babel/plugin-transform-modules-amd@^7.16.7":
773 | version "7.16.7"
774 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz#b28d323016a7daaae8609781d1f8c9da42b13186"
775 | integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==
776 | dependencies:
777 | "@babel/helper-module-transforms" "^7.16.7"
778 | "@babel/helper-plugin-utils" "^7.16.7"
779 | babel-plugin-dynamic-import-node "^2.3.3"
780 |
781 | "@babel/plugin-transform-modules-commonjs@^7.16.7":
782 | version "7.16.7"
783 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.7.tgz#fd119e6a433c527d368425b45df361e1e95d3c1a"
784 | integrity sha512-h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w==
785 | dependencies:
786 | "@babel/helper-module-transforms" "^7.16.7"
787 | "@babel/helper-plugin-utils" "^7.16.7"
788 | "@babel/helper-simple-access" "^7.16.7"
789 | babel-plugin-dynamic-import-node "^2.3.3"
790 |
791 | "@babel/plugin-transform-modules-systemjs@^7.16.7":
792 | version "7.16.7"
793 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz#887cefaef88e684d29558c2b13ee0563e287c2d7"
794 | integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==
795 | dependencies:
796 | "@babel/helper-hoist-variables" "^7.16.7"
797 | "@babel/helper-module-transforms" "^7.16.7"
798 | "@babel/helper-plugin-utils" "^7.16.7"
799 | "@babel/helper-validator-identifier" "^7.16.7"
800 | babel-plugin-dynamic-import-node "^2.3.3"
801 |
802 | "@babel/plugin-transform-modules-umd@^7.16.7":
803 | version "7.16.7"
804 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz#23dad479fa585283dbd22215bff12719171e7618"
805 | integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==
806 | dependencies:
807 | "@babel/helper-module-transforms" "^7.16.7"
808 | "@babel/helper-plugin-utils" "^7.16.7"
809 |
810 | "@babel/plugin-transform-named-capturing-groups-regex@^7.16.7":
811 | version "7.16.7"
812 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.7.tgz#749d90d94e73cf62c60a0cc8d6b94d29305a81f2"
813 | integrity sha512-kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg==
814 | dependencies:
815 | "@babel/helper-create-regexp-features-plugin" "^7.16.7"
816 |
817 | "@babel/plugin-transform-new-target@^7.16.7":
818 | version "7.16.7"
819 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz#9967d89a5c243818e0800fdad89db22c5f514244"
820 | integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==
821 | dependencies:
822 | "@babel/helper-plugin-utils" "^7.16.7"
823 |
824 | "@babel/plugin-transform-object-super@^7.16.7":
825 | version "7.16.7"
826 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94"
827 | integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==
828 | dependencies:
829 | "@babel/helper-plugin-utils" "^7.16.7"
830 | "@babel/helper-replace-supers" "^7.16.7"
831 |
832 | "@babel/plugin-transform-parameters@^7.16.7":
833 | version "7.16.7"
834 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz#a1721f55b99b736511cb7e0152f61f17688f331f"
835 | integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==
836 | dependencies:
837 | "@babel/helper-plugin-utils" "^7.16.7"
838 |
839 | "@babel/plugin-transform-property-literals@^7.16.7":
840 | version "7.16.7"
841 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55"
842 | integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==
843 | dependencies:
844 | "@babel/helper-plugin-utils" "^7.16.7"
845 |
846 | "@babel/plugin-transform-regenerator@^7.16.7":
847 | version "7.16.7"
848 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz#9e7576dc476cb89ccc5096fff7af659243b4adeb"
849 | integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==
850 | dependencies:
851 | regenerator-transform "^0.14.2"
852 |
853 | "@babel/plugin-transform-reserved-words@^7.16.7":
854 | version "7.16.7"
855 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz#1d798e078f7c5958eec952059c460b220a63f586"
856 | integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==
857 | dependencies:
858 | "@babel/helper-plugin-utils" "^7.16.7"
859 |
860 | "@babel/plugin-transform-runtime@^7.16.7":
861 | version "7.16.7"
862 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.7.tgz#1da184cb83a2287a01956c10c60e66dd503c18aa"
863 | integrity sha512-2FoHiSAWkdq4L06uaDN3rS43i6x28desUVxq+zAFuE6kbWYQeiLPJI5IC7Sg9xKYVcrBKSQkVUfH6aeQYbl9QA==
864 | dependencies:
865 | "@babel/helper-module-imports" "^7.16.7"
866 | "@babel/helper-plugin-utils" "^7.16.7"
867 | babel-plugin-polyfill-corejs2 "^0.3.0"
868 | babel-plugin-polyfill-corejs3 "^0.4.0"
869 | babel-plugin-polyfill-regenerator "^0.3.0"
870 | semver "^6.3.0"
871 |
872 | "@babel/plugin-transform-shorthand-properties@^7.16.7":
873 | version "7.16.7"
874 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a"
875 | integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==
876 | dependencies:
877 | "@babel/helper-plugin-utils" "^7.16.7"
878 |
879 | "@babel/plugin-transform-spread@^7.16.7":
880 | version "7.16.7"
881 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz#a303e2122f9f12e0105daeedd0f30fb197d8ff44"
882 | integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==
883 | dependencies:
884 | "@babel/helper-plugin-utils" "^7.16.7"
885 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
886 |
887 | "@babel/plugin-transform-sticky-regex@^7.16.7":
888 | version "7.16.7"
889 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660"
890 | integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==
891 | dependencies:
892 | "@babel/helper-plugin-utils" "^7.16.7"
893 |
894 | "@babel/plugin-transform-template-literals@^7.16.7":
895 | version "7.16.7"
896 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz#f3d1c45d28967c8e80f53666fc9c3e50618217ab"
897 | integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==
898 | dependencies:
899 | "@babel/helper-plugin-utils" "^7.16.7"
900 |
901 | "@babel/plugin-transform-typeof-symbol@^7.16.7":
902 | version "7.16.7"
903 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz#9cdbe622582c21368bd482b660ba87d5545d4f7e"
904 | integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==
905 | dependencies:
906 | "@babel/helper-plugin-utils" "^7.16.7"
907 |
908 | "@babel/plugin-transform-typescript@^7.16.7":
909 | version "7.16.7"
910 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.7.tgz#33f8c2c890fbfdc4ef82446e9abb8de8211a3ff3"
911 | integrity sha512-Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==
912 | dependencies:
913 | "@babel/helper-create-class-features-plugin" "^7.16.7"
914 | "@babel/helper-plugin-utils" "^7.16.7"
915 | "@babel/plugin-syntax-typescript" "^7.16.7"
916 |
917 | "@babel/plugin-transform-unicode-escapes@^7.16.7":
918 | version "7.16.7"
919 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3"
920 | integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==
921 | dependencies:
922 | "@babel/helper-plugin-utils" "^7.16.7"
923 |
924 | "@babel/plugin-transform-unicode-regex@^7.16.7":
925 | version "7.16.7"
926 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2"
927 | integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==
928 | dependencies:
929 | "@babel/helper-create-regexp-features-plugin" "^7.16.7"
930 | "@babel/helper-plugin-utils" "^7.16.7"
931 |
932 | "@babel/preset-env@^7.16.7":
933 | version "7.16.7"
934 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.7.tgz#c491088856d0b3177822a2bf06cb74d76327aa56"
935 | integrity sha512-urX3Cee4aOZbRWOSa3mKPk0aqDikfILuo+C7qq7HY0InylGNZ1fekq9jmlr3pLWwZHF4yD7heQooc2Pow2KMyQ==
936 | dependencies:
937 | "@babel/compat-data" "^7.16.4"
938 | "@babel/helper-compilation-targets" "^7.16.7"
939 | "@babel/helper-plugin-utils" "^7.16.7"
940 | "@babel/helper-validator-option" "^7.16.7"
941 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7"
942 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7"
943 | "@babel/plugin-proposal-async-generator-functions" "^7.16.7"
944 | "@babel/plugin-proposal-class-properties" "^7.16.7"
945 | "@babel/plugin-proposal-class-static-block" "^7.16.7"
946 | "@babel/plugin-proposal-dynamic-import" "^7.16.7"
947 | "@babel/plugin-proposal-export-namespace-from" "^7.16.7"
948 | "@babel/plugin-proposal-json-strings" "^7.16.7"
949 | "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7"
950 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7"
951 | "@babel/plugin-proposal-numeric-separator" "^7.16.7"
952 | "@babel/plugin-proposal-object-rest-spread" "^7.16.7"
953 | "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
954 | "@babel/plugin-proposal-optional-chaining" "^7.16.7"
955 | "@babel/plugin-proposal-private-methods" "^7.16.7"
956 | "@babel/plugin-proposal-private-property-in-object" "^7.16.7"
957 | "@babel/plugin-proposal-unicode-property-regex" "^7.16.7"
958 | "@babel/plugin-syntax-async-generators" "^7.8.4"
959 | "@babel/plugin-syntax-class-properties" "^7.12.13"
960 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
961 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
962 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
963 | "@babel/plugin-syntax-json-strings" "^7.8.3"
964 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
965 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
966 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
967 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
968 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
969 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
970 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
971 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
972 | "@babel/plugin-transform-arrow-functions" "^7.16.7"
973 | "@babel/plugin-transform-async-to-generator" "^7.16.7"
974 | "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
975 | "@babel/plugin-transform-block-scoping" "^7.16.7"
976 | "@babel/plugin-transform-classes" "^7.16.7"
977 | "@babel/plugin-transform-computed-properties" "^7.16.7"
978 | "@babel/plugin-transform-destructuring" "^7.16.7"
979 | "@babel/plugin-transform-dotall-regex" "^7.16.7"
980 | "@babel/plugin-transform-duplicate-keys" "^7.16.7"
981 | "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
982 | "@babel/plugin-transform-for-of" "^7.16.7"
983 | "@babel/plugin-transform-function-name" "^7.16.7"
984 | "@babel/plugin-transform-literals" "^7.16.7"
985 | "@babel/plugin-transform-member-expression-literals" "^7.16.7"
986 | "@babel/plugin-transform-modules-amd" "^7.16.7"
987 | "@babel/plugin-transform-modules-commonjs" "^7.16.7"
988 | "@babel/plugin-transform-modules-systemjs" "^7.16.7"
989 | "@babel/plugin-transform-modules-umd" "^7.16.7"
990 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.7"
991 | "@babel/plugin-transform-new-target" "^7.16.7"
992 | "@babel/plugin-transform-object-super" "^7.16.7"
993 | "@babel/plugin-transform-parameters" "^7.16.7"
994 | "@babel/plugin-transform-property-literals" "^7.16.7"
995 | "@babel/plugin-transform-regenerator" "^7.16.7"
996 | "@babel/plugin-transform-reserved-words" "^7.16.7"
997 | "@babel/plugin-transform-shorthand-properties" "^7.16.7"
998 | "@babel/plugin-transform-spread" "^7.16.7"
999 | "@babel/plugin-transform-sticky-regex" "^7.16.7"
1000 | "@babel/plugin-transform-template-literals" "^7.16.7"
1001 | "@babel/plugin-transform-typeof-symbol" "^7.16.7"
1002 | "@babel/plugin-transform-unicode-escapes" "^7.16.7"
1003 | "@babel/plugin-transform-unicode-regex" "^7.16.7"
1004 | "@babel/preset-modules" "^0.1.5"
1005 | "@babel/types" "^7.16.7"
1006 | babel-plugin-polyfill-corejs2 "^0.3.0"
1007 | babel-plugin-polyfill-corejs3 "^0.4.0"
1008 | babel-plugin-polyfill-regenerator "^0.3.0"
1009 | core-js-compat "^3.19.1"
1010 | semver "^6.3.0"
1011 |
1012 | "@babel/preset-modules@^0.1.5":
1013 | version "0.1.5"
1014 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
1015 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
1016 | dependencies:
1017 | "@babel/helper-plugin-utils" "^7.0.0"
1018 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
1019 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
1020 | "@babel/types" "^7.4.4"
1021 | esutils "^2.0.2"
1022 |
1023 | "@babel/preset-typescript@^7.16.7":
1024 | version "7.16.7"
1025 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz#ab114d68bb2020afc069cd51b37ff98a046a70b9"
1026 | integrity sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==
1027 | dependencies:
1028 | "@babel/helper-plugin-utils" "^7.16.7"
1029 | "@babel/helper-validator-option" "^7.16.7"
1030 | "@babel/plugin-transform-typescript" "^7.16.7"
1031 |
1032 | "@babel/runtime@^7.8.4":
1033 | version "7.14.0"
1034 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
1035 | integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
1036 | dependencies:
1037 | regenerator-runtime "^0.13.4"
1038 |
1039 | "@babel/template@^7.12.13":
1040 | version "7.12.13"
1041 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
1042 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
1043 | dependencies:
1044 | "@babel/code-frame" "^7.12.13"
1045 | "@babel/parser" "^7.12.13"
1046 | "@babel/types" "^7.12.13"
1047 |
1048 | "@babel/template@^7.16.7":
1049 | version "7.16.7"
1050 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155"
1051 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==
1052 | dependencies:
1053 | "@babel/code-frame" "^7.16.7"
1054 | "@babel/parser" "^7.16.7"
1055 | "@babel/types" "^7.16.7"
1056 |
1057 | "@babel/traverse@^7.13.0":
1058 | version "7.14.0"
1059 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz#cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef"
1060 | integrity sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==
1061 | dependencies:
1062 | "@babel/code-frame" "^7.12.13"
1063 | "@babel/generator" "^7.14.0"
1064 | "@babel/helper-function-name" "^7.12.13"
1065 | "@babel/helper-split-export-declaration" "^7.12.13"
1066 | "@babel/parser" "^7.14.0"
1067 | "@babel/types" "^7.14.0"
1068 | debug "^4.1.0"
1069 | globals "^11.1.0"
1070 |
1071 | "@babel/traverse@^7.16.7":
1072 | version "7.16.7"
1073 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.7.tgz#dac01236a72c2560073658dd1a285fe4e0865d76"
1074 | integrity sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==
1075 | dependencies:
1076 | "@babel/code-frame" "^7.16.7"
1077 | "@babel/generator" "^7.16.7"
1078 | "@babel/helper-environment-visitor" "^7.16.7"
1079 | "@babel/helper-function-name" "^7.16.7"
1080 | "@babel/helper-hoist-variables" "^7.16.7"
1081 | "@babel/helper-split-export-declaration" "^7.16.7"
1082 | "@babel/parser" "^7.16.7"
1083 | "@babel/types" "^7.16.7"
1084 | debug "^4.1.0"
1085 | globals "^11.1.0"
1086 |
1087 | "@babel/types@^7.12.13", "@babel/types@^7.13.12", "@babel/types@^7.14.0", "@babel/types@^7.14.1", "@babel/types@^7.4.4":
1088 | version "7.14.1"
1089 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz#095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db"
1090 | integrity sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA==
1091 | dependencies:
1092 | "@babel/helper-validator-identifier" "^7.14.0"
1093 | to-fast-properties "^2.0.0"
1094 |
1095 | "@babel/types@^7.16.0", "@babel/types@^7.16.7":
1096 | version "7.16.7"
1097 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.7.tgz#4ed19d51f840ed4bd5645be6ce40775fecf03159"
1098 | integrity sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==
1099 | dependencies:
1100 | "@babel/helper-validator-identifier" "^7.16.7"
1101 | to-fast-properties "^2.0.0"
1102 |
1103 | "@eslint/eslintrc@^0.4.0":
1104 | version "0.4.3"
1105 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
1106 | integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
1107 | dependencies:
1108 | ajv "^6.12.4"
1109 | debug "^4.1.1"
1110 | espree "^7.3.0"
1111 | globals "^13.9.0"
1112 | ignore "^4.0.6"
1113 | import-fresh "^3.2.1"
1114 | js-yaml "^3.13.1"
1115 | minimatch "^3.0.4"
1116 | strip-json-comments "^3.1.1"
1117 |
1118 | "@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
1119 | version "2.1.8-no-fsevents.3"
1120 | resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
1121 | integrity sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==
1122 |
1123 | "@nodelib/fs.scandir@2.1.5":
1124 | version "2.1.5"
1125 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
1126 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
1127 | dependencies:
1128 | "@nodelib/fs.stat" "2.0.5"
1129 | run-parallel "^1.1.9"
1130 |
1131 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
1132 | version "2.0.5"
1133 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
1134 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
1135 |
1136 | "@nodelib/fs.walk@^1.2.3":
1137 | version "1.2.8"
1138 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
1139 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
1140 | dependencies:
1141 | "@nodelib/fs.scandir" "2.1.5"
1142 | fastq "^1.6.0"
1143 |
1144 | "@types/json-schema@^7.0.9":
1145 | version "7.0.9"
1146 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
1147 | integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
1148 |
1149 | "@types/phoenix@^1.5.4":
1150 | version "1.5.4"
1151 | resolved "https://registry.yarnpkg.com/@types/phoenix/-/phoenix-1.5.4.tgz#c08a1da6d7b4e365f6a1fe1ff9aada55f5356d24"
1152 | integrity sha512-L5eZmzw89eXBKkiqVBcJfU1QGx9y+wurRIEgt0cuLH0hwNtVUxtx+6cu0R2STwWj468sjXyBYPYDtGclUd1kjQ==
1153 |
1154 | "@typescript-eslint/eslint-plugin@^5.4.0":
1155 | version "5.9.0"
1156 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.9.0.tgz#382182d5cb062f52aac54434cfc47c28898c8006"
1157 | integrity sha512-qT4lr2jysDQBQOPsCCvpPUZHjbABoTJW8V9ZzIYKHMfppJtpdtzszDYsldwhFxlhvrp7aCHeXD1Lb9M1zhwWwQ==
1158 | dependencies:
1159 | "@typescript-eslint/experimental-utils" "5.9.0"
1160 | "@typescript-eslint/scope-manager" "5.9.0"
1161 | "@typescript-eslint/type-utils" "5.9.0"
1162 | debug "^4.3.2"
1163 | functional-red-black-tree "^1.0.1"
1164 | ignore "^5.1.8"
1165 | regexpp "^3.2.0"
1166 | semver "^7.3.5"
1167 | tsutils "^3.21.0"
1168 |
1169 | "@typescript-eslint/experimental-utils@5.9.0":
1170 | version "5.9.0"
1171 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.9.0.tgz#652762d37d6565ef07af285021b8347b6c79a827"
1172 | integrity sha512-ZnLVjBrf26dn7ElyaSKa6uDhqwvAi4jBBmHK1VxuFGPRAxhdi18ubQYSGA7SRiFiES3q9JiBOBHEBStOFkwD2g==
1173 | dependencies:
1174 | "@types/json-schema" "^7.0.9"
1175 | "@typescript-eslint/scope-manager" "5.9.0"
1176 | "@typescript-eslint/types" "5.9.0"
1177 | "@typescript-eslint/typescript-estree" "5.9.0"
1178 | eslint-scope "^5.1.1"
1179 | eslint-utils "^3.0.0"
1180 |
1181 | "@typescript-eslint/parser@^5.4.0":
1182 | version "5.9.0"
1183 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.9.0.tgz#fdbb08767a4caa6ca6ccfed5f9ffe9387f0c7d97"
1184 | integrity sha512-/6pOPz8yAxEt4PLzgbFRDpZmHnXCeZgPDrh/1DaVKOjvn/UPMlWhbx/gA96xRi2JxY1kBl2AmwVbyROUqys5xQ==
1185 | dependencies:
1186 | "@typescript-eslint/scope-manager" "5.9.0"
1187 | "@typescript-eslint/types" "5.9.0"
1188 | "@typescript-eslint/typescript-estree" "5.9.0"
1189 | debug "^4.3.2"
1190 |
1191 | "@typescript-eslint/scope-manager@5.9.0":
1192 | version "5.9.0"
1193 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.9.0.tgz#02dfef920290c1dcd7b1999455a3eaae7a1a3117"
1194 | integrity sha512-DKtdIL49Qxk2a8icF6whRk7uThuVz4A6TCXfjdJSwOsf+9ree7vgQWcx0KOyCdk0i9ETX666p4aMhrRhxhUkyg==
1195 | dependencies:
1196 | "@typescript-eslint/types" "5.9.0"
1197 | "@typescript-eslint/visitor-keys" "5.9.0"
1198 |
1199 | "@typescript-eslint/type-utils@5.9.0":
1200 | version "5.9.0"
1201 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.9.0.tgz#fd5963ead04bc9b7af9c3a8e534d8d39f1ce5f93"
1202 | integrity sha512-uVCb9dJXpBrK1071ri5aEW7ZHdDHAiqEjYznF3HSSvAJXyrkxGOw2Ejibz/q6BXdT8lea8CMI0CzKNFTNI6TEQ==
1203 | dependencies:
1204 | "@typescript-eslint/experimental-utils" "5.9.0"
1205 | debug "^4.3.2"
1206 | tsutils "^3.21.0"
1207 |
1208 | "@typescript-eslint/types@5.9.0":
1209 | version "5.9.0"
1210 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.9.0.tgz#e5619803e39d24a03b3369506df196355736e1a3"
1211 | integrity sha512-mWp6/b56Umo1rwyGCk8fPIzb9Migo8YOniBGPAQDNC6C52SeyNGN4gsVwQTAR+RS2L5xyajON4hOLwAGwPtUwg==
1212 |
1213 | "@typescript-eslint/typescript-estree@5.9.0":
1214 | version "5.9.0"
1215 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.9.0.tgz#0e5c6f03f982931abbfbc3c1b9df5fbf92a3490f"
1216 | integrity sha512-kxo3xL2mB7XmiVZcECbaDwYCt3qFXz99tBSuVJR4L/sR7CJ+UNAPrYILILktGj1ppfZ/jNt/cWYbziJUlHl1Pw==
1217 | dependencies:
1218 | "@typescript-eslint/types" "5.9.0"
1219 | "@typescript-eslint/visitor-keys" "5.9.0"
1220 | debug "^4.3.2"
1221 | globby "^11.0.4"
1222 | is-glob "^4.0.3"
1223 | semver "^7.3.5"
1224 | tsutils "^3.21.0"
1225 |
1226 | "@typescript-eslint/visitor-keys@5.9.0":
1227 | version "5.9.0"
1228 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.9.0.tgz#7585677732365e9d27f1878150fab3922784a1a6"
1229 | integrity sha512-6zq0mb7LV0ThExKlecvpfepiB+XEtFv/bzx7/jKSgyXTFD7qjmSu1FoiS0x3OZaiS+UIXpH2vd9O89f02RCtgw==
1230 | dependencies:
1231 | "@typescript-eslint/types" "5.9.0"
1232 | eslint-visitor-keys "^3.0.0"
1233 |
1234 | acorn-jsx@^5.3.1:
1235 | version "5.3.2"
1236 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
1237 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
1238 |
1239 | acorn@^7.4.0:
1240 | version "7.4.1"
1241 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
1242 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
1243 |
1244 | ajv@^6.10.0, ajv@^6.12.4:
1245 | version "6.12.6"
1246 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
1247 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
1248 | dependencies:
1249 | fast-deep-equal "^3.1.1"
1250 | fast-json-stable-stringify "^2.0.0"
1251 | json-schema-traverse "^0.4.1"
1252 | uri-js "^4.2.2"
1253 |
1254 | ajv@^8.0.1:
1255 | version "8.8.2"
1256 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.8.2.tgz#01b4fef2007a28bf75f0b7fc009f62679de4abbb"
1257 | integrity sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==
1258 | dependencies:
1259 | fast-deep-equal "^3.1.1"
1260 | json-schema-traverse "^1.0.0"
1261 | require-from-string "^2.0.2"
1262 | uri-js "^4.2.2"
1263 |
1264 | ansi-colors@^4.1.1:
1265 | version "4.1.1"
1266 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
1267 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
1268 |
1269 | ansi-regex@^5.0.1:
1270 | version "5.0.1"
1271 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
1272 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
1273 |
1274 | ansi-styles@^3.2.1:
1275 | version "3.2.1"
1276 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1277 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1278 | dependencies:
1279 | color-convert "^1.9.0"
1280 |
1281 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1282 | version "4.3.0"
1283 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
1284 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
1285 | dependencies:
1286 | color-convert "^2.0.1"
1287 |
1288 | anymatch@~3.1.1:
1289 | version "3.1.2"
1290 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1291 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1292 | dependencies:
1293 | normalize-path "^3.0.0"
1294 | picomatch "^2.0.4"
1295 |
1296 | argparse@^1.0.7:
1297 | version "1.0.10"
1298 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
1299 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
1300 | dependencies:
1301 | sprintf-js "~1.0.2"
1302 |
1303 | array-union@^2.1.0:
1304 | version "2.1.0"
1305 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
1306 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
1307 |
1308 | astral-regex@^2.0.0:
1309 | version "2.0.0"
1310 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
1311 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
1312 |
1313 | asynckit@^0.4.0:
1314 | version "0.4.0"
1315 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
1316 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
1317 |
1318 | axios-retry@^3.1.9:
1319 | version "3.1.9"
1320 | resolved "https://registry.yarnpkg.com/axios-retry/-/axios-retry-3.1.9.tgz#6c30fc9aeb4519aebaec758b90ef56fa03fe72e8"
1321 | integrity sha512-NFCoNIHq8lYkJa6ku4m+V1837TP6lCa7n79Iuf8/AqATAHYB0ISaAS1eyIenDOfHOLtym34W65Sjke2xjg2fsA==
1322 | dependencies:
1323 | is-retry-allowed "^1.1.0"
1324 |
1325 | axios@^1.6.0:
1326 | version "1.6.2"
1327 | resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.2.tgz#de67d42c755b571d3e698df1b6504cde9b0ee9f2"
1328 | integrity sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==
1329 | dependencies:
1330 | follow-redirects "^1.15.0"
1331 | form-data "^4.0.0"
1332 | proxy-from-env "^1.1.0"
1333 |
1334 | babel-plugin-dynamic-import-node@^2.3.3:
1335 | version "2.3.3"
1336 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
1337 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
1338 | dependencies:
1339 | object.assign "^4.1.0"
1340 |
1341 | babel-plugin-polyfill-corejs2@^0.3.0:
1342 | version "0.3.0"
1343 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz#407082d0d355ba565af24126fb6cb8e9115251fd"
1344 | integrity sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==
1345 | dependencies:
1346 | "@babel/compat-data" "^7.13.11"
1347 | "@babel/helper-define-polyfill-provider" "^0.3.0"
1348 | semver "^6.1.1"
1349 |
1350 | babel-plugin-polyfill-corejs3@^0.4.0:
1351 | version "0.4.0"
1352 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz#0b571f4cf3d67f911512f5c04842a7b8e8263087"
1353 | integrity sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==
1354 | dependencies:
1355 | "@babel/helper-define-polyfill-provider" "^0.3.0"
1356 | core-js-compat "^3.18.0"
1357 |
1358 | babel-plugin-polyfill-regenerator@^0.3.0:
1359 | version "0.3.0"
1360 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz#9ebbcd7186e1a33e21c5e20cae4e7983949533be"
1361 | integrity sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==
1362 | dependencies:
1363 | "@babel/helper-define-polyfill-provider" "^0.3.0"
1364 |
1365 | balanced-match@^1.0.0:
1366 | version "1.0.2"
1367 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1368 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1369 |
1370 | binary-extensions@^2.0.0:
1371 | version "2.2.0"
1372 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
1373 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
1374 |
1375 | brace-expansion@^1.1.7:
1376 | version "1.1.11"
1377 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1378 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1379 | dependencies:
1380 | balanced-match "^1.0.0"
1381 | concat-map "0.0.1"
1382 |
1383 | braces@^3.0.1, braces@~3.0.2:
1384 | version "3.0.2"
1385 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
1386 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
1387 | dependencies:
1388 | fill-range "^7.0.1"
1389 |
1390 | browserslist@^4.14.5:
1391 | version "4.16.6"
1392 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
1393 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
1394 | dependencies:
1395 | caniuse-lite "^1.0.30001219"
1396 | colorette "^1.2.2"
1397 | electron-to-chromium "^1.3.723"
1398 | escalade "^3.1.1"
1399 | node-releases "^1.1.71"
1400 |
1401 | browserslist@^4.17.5, browserslist@^4.19.1:
1402 | version "4.19.1"
1403 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3"
1404 | integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==
1405 | dependencies:
1406 | caniuse-lite "^1.0.30001286"
1407 | electron-to-chromium "^1.4.17"
1408 | escalade "^3.1.1"
1409 | node-releases "^2.0.1"
1410 | picocolors "^1.0.0"
1411 |
1412 | call-bind@^1.0.0:
1413 | version "1.0.2"
1414 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1415 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1416 | dependencies:
1417 | function-bind "^1.1.1"
1418 | get-intrinsic "^1.0.2"
1419 |
1420 | callsites@^3.0.0:
1421 | version "3.1.0"
1422 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1423 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1424 |
1425 | caniuse-lite@^1.0.30001219:
1426 | version "1.0.30001223"
1427 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001223.tgz#39b49ff0bfb3ee3587000d2f66c47addc6e14443"
1428 | integrity sha512-k/RYs6zc/fjbxTjaWZemeSmOjO0JJV+KguOBA3NwPup8uzxM1cMhR2BD9XmO86GuqaqTCO8CgkgH9Rz//vdDiA==
1429 |
1430 | caniuse-lite@^1.0.30001286:
1431 | version "1.0.30001296"
1432 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001296.tgz#d99f0f3bee66544800b93d261c4be55a35f1cec8"
1433 | integrity sha512-WfrtPEoNSoeATDlf4y3QvkwiELl9GyPLISV5GejTbbQRtQx4LhsXmc9IQ6XCL2d7UxCyEzToEZNMeqR79OUw8Q==
1434 |
1435 | chalk@^2.0.0:
1436 | version "2.4.2"
1437 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1438 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1439 | dependencies:
1440 | ansi-styles "^3.2.1"
1441 | escape-string-regexp "^1.0.5"
1442 | supports-color "^5.3.0"
1443 |
1444 | chalk@^4.0.0:
1445 | version "4.1.2"
1446 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
1447 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
1448 | dependencies:
1449 | ansi-styles "^4.1.0"
1450 | supports-color "^7.1.0"
1451 |
1452 | chokidar@^3.4.0:
1453 | version "3.5.1"
1454 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
1455 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
1456 | dependencies:
1457 | anymatch "~3.1.1"
1458 | braces "~3.0.2"
1459 | glob-parent "~5.1.0"
1460 | is-binary-path "~2.1.0"
1461 | is-glob "~4.0.1"
1462 | normalize-path "~3.0.0"
1463 | readdirp "~3.5.0"
1464 | optionalDependencies:
1465 | fsevents "~2.3.1"
1466 |
1467 | color-convert@^1.9.0:
1468 | version "1.9.3"
1469 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1470 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1471 | dependencies:
1472 | color-name "1.1.3"
1473 |
1474 | color-convert@^2.0.1:
1475 | version "2.0.1"
1476 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
1477 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
1478 | dependencies:
1479 | color-name "~1.1.4"
1480 |
1481 | color-name@1.1.3:
1482 | version "1.1.3"
1483 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1484 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1485 |
1486 | color-name@~1.1.4:
1487 | version "1.1.4"
1488 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1489 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1490 |
1491 | colorette@^1.2.2:
1492 | version "1.2.2"
1493 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
1494 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
1495 |
1496 | combined-stream@^1.0.8:
1497 | version "1.0.8"
1498 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
1499 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
1500 | dependencies:
1501 | delayed-stream "~1.0.0"
1502 |
1503 | commander@^4.0.1:
1504 | version "4.1.1"
1505 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
1506 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
1507 |
1508 | concat-map@0.0.1:
1509 | version "0.0.1"
1510 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1511 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1512 |
1513 | convert-source-map@^1.1.0, convert-source-map@^1.7.0:
1514 | version "1.7.0"
1515 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
1516 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
1517 | dependencies:
1518 | safe-buffer "~5.1.1"
1519 |
1520 | core-js-compat@^3.18.0, core-js-compat@^3.19.1:
1521 | version "3.20.2"
1522 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.2.tgz#d1ff6936c7330959b46b2e08b122a8b14e26140b"
1523 | integrity sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==
1524 | dependencies:
1525 | browserslist "^4.19.1"
1526 | semver "7.0.0"
1527 |
1528 | cross-env@^7.0.3:
1529 | version "7.0.3"
1530 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf"
1531 | integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
1532 | dependencies:
1533 | cross-spawn "^7.0.1"
1534 |
1535 | cross-spawn@^7.0.1, cross-spawn@^7.0.2:
1536 | version "7.0.3"
1537 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
1538 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
1539 | dependencies:
1540 | path-key "^3.1.0"
1541 | shebang-command "^2.0.0"
1542 | which "^2.0.1"
1543 |
1544 | debug@^4.0.1, debug@^4.3.2:
1545 | version "4.3.3"
1546 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
1547 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
1548 | dependencies:
1549 | ms "2.1.2"
1550 |
1551 | debug@^4.1.0, debug@^4.1.1:
1552 | version "4.3.1"
1553 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
1554 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
1555 | dependencies:
1556 | ms "2.1.2"
1557 |
1558 | deep-is@^0.1.3:
1559 | version "0.1.4"
1560 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
1561 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
1562 |
1563 | define-properties@^1.1.3:
1564 | version "1.1.3"
1565 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1566 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
1567 | dependencies:
1568 | object-keys "^1.0.12"
1569 |
1570 | delayed-stream@~1.0.0:
1571 | version "1.0.0"
1572 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1573 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
1574 |
1575 | dir-glob@^3.0.1:
1576 | version "3.0.1"
1577 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
1578 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
1579 | dependencies:
1580 | path-type "^4.0.0"
1581 |
1582 | doctrine@^3.0.0:
1583 | version "3.0.0"
1584 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
1585 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
1586 | dependencies:
1587 | esutils "^2.0.2"
1588 |
1589 | electron-to-chromium@^1.3.723:
1590 | version "1.3.727"
1591 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.727.tgz#857e310ca00f0b75da4e1db6ff0e073cc4a91ddf"
1592 | integrity sha512-Mfz4FIB4FSvEwBpDfdipRIrwd6uo8gUDoRDF4QEYb4h4tSuI3ov594OrjU6on042UlFHouIJpClDODGkPcBSbg==
1593 |
1594 | electron-to-chromium@^1.4.17:
1595 | version "1.4.36"
1596 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.36.tgz#446c6184dbe5baeb5eae9a875490831e4bc5319a"
1597 | integrity sha512-MbLlbF39vKrXWlFEFpCgDHwdlz4O3LmHM5W4tiLRHjSmEUXjJjz8sZkMgWgvYxlZw3N1iDTmCEtOkkESb5TMCg==
1598 |
1599 | emoji-regex@^8.0.0:
1600 | version "8.0.0"
1601 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
1602 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1603 |
1604 | enquirer@^2.3.5:
1605 | version "2.3.6"
1606 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
1607 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
1608 | dependencies:
1609 | ansi-colors "^4.1.1"
1610 |
1611 | escalade@^3.1.1:
1612 | version "3.1.1"
1613 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1614 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1615 |
1616 | escape-string-regexp@^1.0.5:
1617 | version "1.0.5"
1618 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1619 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1620 |
1621 | eslint-scope@^5.1.1:
1622 | version "5.1.1"
1623 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
1624 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
1625 | dependencies:
1626 | esrecurse "^4.3.0"
1627 | estraverse "^4.1.1"
1628 |
1629 | eslint-utils@^2.1.0:
1630 | version "2.1.0"
1631 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
1632 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
1633 | dependencies:
1634 | eslint-visitor-keys "^1.1.0"
1635 |
1636 | eslint-utils@^3.0.0:
1637 | version "3.0.0"
1638 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
1639 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
1640 | dependencies:
1641 | eslint-visitor-keys "^2.0.0"
1642 |
1643 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
1644 | version "1.3.0"
1645 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
1646 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
1647 |
1648 | eslint-visitor-keys@^2.0.0:
1649 | version "2.1.0"
1650 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
1651 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
1652 |
1653 | eslint-visitor-keys@^3.0.0:
1654 | version "3.1.0"
1655 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2"
1656 | integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==
1657 |
1658 | eslint@7.23.0:
1659 | version "7.23.0"
1660 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325"
1661 | integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
1662 | dependencies:
1663 | "@babel/code-frame" "7.12.11"
1664 | "@eslint/eslintrc" "^0.4.0"
1665 | ajv "^6.10.0"
1666 | chalk "^4.0.0"
1667 | cross-spawn "^7.0.2"
1668 | debug "^4.0.1"
1669 | doctrine "^3.0.0"
1670 | enquirer "^2.3.5"
1671 | eslint-scope "^5.1.1"
1672 | eslint-utils "^2.1.0"
1673 | eslint-visitor-keys "^2.0.0"
1674 | espree "^7.3.1"
1675 | esquery "^1.4.0"
1676 | esutils "^2.0.2"
1677 | file-entry-cache "^6.0.1"
1678 | functional-red-black-tree "^1.0.1"
1679 | glob-parent "^5.0.0"
1680 | globals "^13.6.0"
1681 | ignore "^4.0.6"
1682 | import-fresh "^3.0.0"
1683 | imurmurhash "^0.1.4"
1684 | is-glob "^4.0.0"
1685 | js-yaml "^3.13.1"
1686 | json-stable-stringify-without-jsonify "^1.0.1"
1687 | levn "^0.4.1"
1688 | lodash "^4.17.21"
1689 | minimatch "^3.0.4"
1690 | natural-compare "^1.4.0"
1691 | optionator "^0.9.1"
1692 | progress "^2.0.0"
1693 | regexpp "^3.1.0"
1694 | semver "^7.2.1"
1695 | strip-ansi "^6.0.0"
1696 | strip-json-comments "^3.1.0"
1697 | table "^6.0.4"
1698 | text-table "^0.2.0"
1699 | v8-compile-cache "^2.0.3"
1700 |
1701 | espree@^7.3.0, espree@^7.3.1:
1702 | version "7.3.1"
1703 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
1704 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
1705 | dependencies:
1706 | acorn "^7.4.0"
1707 | acorn-jsx "^5.3.1"
1708 | eslint-visitor-keys "^1.3.0"
1709 |
1710 | esprima@^4.0.0:
1711 | version "4.0.1"
1712 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1713 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1714 |
1715 | esquery@^1.4.0:
1716 | version "1.4.0"
1717 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
1718 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1719 | dependencies:
1720 | estraverse "^5.1.0"
1721 |
1722 | esrecurse@^4.3.0:
1723 | version "4.3.0"
1724 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
1725 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
1726 | dependencies:
1727 | estraverse "^5.2.0"
1728 |
1729 | estraverse@^4.1.1:
1730 | version "4.3.0"
1731 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1732 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1733 |
1734 | estraverse@^5.1.0, estraverse@^5.2.0:
1735 | version "5.3.0"
1736 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
1737 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
1738 |
1739 | esutils@^2.0.2:
1740 | version "2.0.3"
1741 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1742 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1743 |
1744 | eventemitter2@^6.4.5:
1745 | version "6.4.5"
1746 | resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.5.tgz#97380f758ae24ac15df8353e0cc27f8b95644655"
1747 | integrity sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==
1748 |
1749 | fast-deep-equal@^3.1.1:
1750 | version "3.1.3"
1751 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1752 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1753 |
1754 | fast-glob@^3.1.1:
1755 | version "3.2.7"
1756 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
1757 | integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==
1758 | dependencies:
1759 | "@nodelib/fs.stat" "^2.0.2"
1760 | "@nodelib/fs.walk" "^1.2.3"
1761 | glob-parent "^5.1.2"
1762 | merge2 "^1.3.0"
1763 | micromatch "^4.0.4"
1764 |
1765 | fast-json-stable-stringify@^2.0.0:
1766 | version "2.1.0"
1767 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1768 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1769 |
1770 | fast-levenshtein@^2.0.6:
1771 | version "2.0.6"
1772 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1773 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1774 |
1775 | fastq@^1.6.0:
1776 | version "1.13.0"
1777 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
1778 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
1779 | dependencies:
1780 | reusify "^1.0.4"
1781 |
1782 | file-entry-cache@^6.0.1:
1783 | version "6.0.1"
1784 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
1785 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
1786 | dependencies:
1787 | flat-cache "^3.0.4"
1788 |
1789 | fill-range@^7.0.1:
1790 | version "7.0.1"
1791 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1792 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1793 | dependencies:
1794 | to-regex-range "^5.0.1"
1795 |
1796 | flat-cache@^3.0.4:
1797 | version "3.0.4"
1798 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
1799 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
1800 | dependencies:
1801 | flatted "^3.1.0"
1802 | rimraf "^3.0.2"
1803 |
1804 | flatted@^3.1.0:
1805 | version "3.2.4"
1806 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2"
1807 | integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==
1808 |
1809 | follow-redirects@^1.15.0:
1810 | version "1.15.3"
1811 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a"
1812 | integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==
1813 |
1814 | form-data@^4.0.0:
1815 | version "4.0.0"
1816 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
1817 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
1818 | dependencies:
1819 | asynckit "^0.4.0"
1820 | combined-stream "^1.0.8"
1821 | mime-types "^2.1.12"
1822 |
1823 | fs-readdir-recursive@^1.1.0:
1824 | version "1.1.0"
1825 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1826 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
1827 |
1828 | fs.realpath@^1.0.0:
1829 | version "1.0.0"
1830 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1831 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1832 |
1833 | fsevents@~2.3.1:
1834 | version "2.3.2"
1835 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1836 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1837 |
1838 | function-bind@^1.1.1:
1839 | version "1.1.1"
1840 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1841 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1842 |
1843 | functional-red-black-tree@^1.0.1:
1844 | version "1.0.1"
1845 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1846 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
1847 |
1848 | gensync@^1.0.0-beta.2:
1849 | version "1.0.0-beta.2"
1850 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1851 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1852 |
1853 | get-intrinsic@^1.0.2:
1854 | version "1.1.1"
1855 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1856 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1857 | dependencies:
1858 | function-bind "^1.1.1"
1859 | has "^1.0.3"
1860 | has-symbols "^1.0.1"
1861 |
1862 | glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.0:
1863 | version "5.1.2"
1864 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1865 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1866 | dependencies:
1867 | is-glob "^4.0.1"
1868 |
1869 | glob@^7.0.0:
1870 | version "7.1.7"
1871 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
1872 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1873 | dependencies:
1874 | fs.realpath "^1.0.0"
1875 | inflight "^1.0.4"
1876 | inherits "2"
1877 | minimatch "^3.0.4"
1878 | once "^1.3.0"
1879 | path-is-absolute "^1.0.0"
1880 |
1881 | glob@^7.1.3:
1882 | version "7.1.6"
1883 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
1884 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
1885 | dependencies:
1886 | fs.realpath "^1.0.0"
1887 | inflight "^1.0.4"
1888 | inherits "2"
1889 | minimatch "^3.0.4"
1890 | once "^1.3.0"
1891 | path-is-absolute "^1.0.0"
1892 |
1893 | globals@^11.1.0:
1894 | version "11.12.0"
1895 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1896 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1897 |
1898 | globals@^13.6.0, globals@^13.9.0:
1899 | version "13.12.0"
1900 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e"
1901 | integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==
1902 | dependencies:
1903 | type-fest "^0.20.2"
1904 |
1905 | globby@^11.0.4:
1906 | version "11.0.4"
1907 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
1908 | integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
1909 | dependencies:
1910 | array-union "^2.1.0"
1911 | dir-glob "^3.0.1"
1912 | fast-glob "^3.1.1"
1913 | ignore "^5.1.4"
1914 | merge2 "^1.3.0"
1915 | slash "^3.0.0"
1916 |
1917 | has-flag@^3.0.0:
1918 | version "3.0.0"
1919 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1920 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1921 |
1922 | has-flag@^4.0.0:
1923 | version "4.0.0"
1924 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1925 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1926 |
1927 | has-symbols@^1.0.1:
1928 | version "1.0.2"
1929 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
1930 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
1931 |
1932 | has@^1.0.3:
1933 | version "1.0.3"
1934 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1935 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1936 | dependencies:
1937 | function-bind "^1.1.1"
1938 |
1939 | ignore@^4.0.6:
1940 | version "4.0.6"
1941 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
1942 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
1943 |
1944 | ignore@^5.1.4, ignore@^5.1.8:
1945 | version "5.2.0"
1946 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
1947 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1948 |
1949 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1950 | version "3.3.0"
1951 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1952 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1953 | dependencies:
1954 | parent-module "^1.0.0"
1955 | resolve-from "^4.0.0"
1956 |
1957 | imurmurhash@^0.1.4:
1958 | version "0.1.4"
1959 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1960 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1961 |
1962 | inflight@^1.0.4:
1963 | version "1.0.6"
1964 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1965 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1966 | dependencies:
1967 | once "^1.3.0"
1968 | wrappy "1"
1969 |
1970 | inherits@2:
1971 | version "2.0.4"
1972 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1973 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1974 |
1975 | is-binary-path@~2.1.0:
1976 | version "2.1.0"
1977 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1978 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1979 | dependencies:
1980 | binary-extensions "^2.0.0"
1981 |
1982 | is-core-module@^2.2.0:
1983 | version "2.3.0"
1984 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887"
1985 | integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==
1986 | dependencies:
1987 | has "^1.0.3"
1988 |
1989 | is-extglob@^2.1.1:
1990 | version "2.1.1"
1991 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1992 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1993 |
1994 | is-fullwidth-code-point@^3.0.0:
1995 | version "3.0.0"
1996 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
1997 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1998 |
1999 | is-glob@^4.0.0, is-glob@^4.0.3:
2000 | version "4.0.3"
2001 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
2002 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
2003 | dependencies:
2004 | is-extglob "^2.1.1"
2005 |
2006 | is-glob@^4.0.1, is-glob@~4.0.1:
2007 | version "4.0.1"
2008 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
2009 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
2010 | dependencies:
2011 | is-extglob "^2.1.1"
2012 |
2013 | is-number@^7.0.0:
2014 | version "7.0.0"
2015 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
2016 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
2017 |
2018 | is-retry-allowed@^1.1.0:
2019 | version "1.2.0"
2020 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
2021 | integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
2022 |
2023 | isexe@^2.0.0:
2024 | version "2.0.0"
2025 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2026 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
2027 |
2028 | js-tokens@^4.0.0:
2029 | version "4.0.0"
2030 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2031 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2032 |
2033 | js-yaml@^3.13.1:
2034 | version "3.14.1"
2035 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2036 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2037 | dependencies:
2038 | argparse "^1.0.7"
2039 | esprima "^4.0.0"
2040 |
2041 | jsesc@^2.5.1:
2042 | version "2.5.2"
2043 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2044 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2045 |
2046 | jsesc@~0.5.0:
2047 | version "0.5.0"
2048 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2049 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
2050 |
2051 | json-schema-traverse@^0.4.1:
2052 | version "0.4.1"
2053 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2054 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
2055 |
2056 | json-schema-traverse@^1.0.0:
2057 | version "1.0.0"
2058 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
2059 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
2060 |
2061 | json-stable-stringify-without-jsonify@^1.0.1:
2062 | version "1.0.1"
2063 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
2064 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
2065 |
2066 | json5@^2.1.2:
2067 | version "2.2.0"
2068 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
2069 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
2070 | dependencies:
2071 | minimist "^1.2.5"
2072 |
2073 | levn@^0.4.1:
2074 | version "0.4.1"
2075 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
2076 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
2077 | dependencies:
2078 | prelude-ls "^1.2.1"
2079 | type-check "~0.4.0"
2080 |
2081 | lodash.debounce@^4.0.8:
2082 | version "4.0.8"
2083 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2084 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
2085 |
2086 | lodash.truncate@^4.4.2:
2087 | version "4.4.2"
2088 | resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
2089 | integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
2090 |
2091 | lodash@^4.17.21:
2092 | version "4.17.21"
2093 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2094 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2095 |
2096 | lru-cache@^6.0.0:
2097 | version "6.0.0"
2098 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
2099 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
2100 | dependencies:
2101 | yallist "^4.0.0"
2102 |
2103 | make-dir@^2.1.0:
2104 | version "2.1.0"
2105 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
2106 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
2107 | dependencies:
2108 | pify "^4.0.1"
2109 | semver "^5.6.0"
2110 |
2111 | merge2@^1.3.0:
2112 | version "1.4.1"
2113 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
2114 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
2115 |
2116 | micromatch@^4.0.4:
2117 | version "4.0.4"
2118 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
2119 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
2120 | dependencies:
2121 | braces "^3.0.1"
2122 | picomatch "^2.2.3"
2123 |
2124 | mime-db@1.52.0:
2125 | version "1.52.0"
2126 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
2127 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
2128 |
2129 | mime-types@^2.1.12:
2130 | version "2.1.35"
2131 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
2132 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
2133 | dependencies:
2134 | mime-db "1.52.0"
2135 |
2136 | minimatch@^3.0.4:
2137 | version "3.0.4"
2138 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2139 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
2140 | dependencies:
2141 | brace-expansion "^1.1.7"
2142 |
2143 | minimist@^1.2.5:
2144 | version "1.2.5"
2145 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
2146 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
2147 |
2148 | ms@2.1.2:
2149 | version "2.1.2"
2150 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2151 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2152 |
2153 | natural-compare@^1.4.0:
2154 | version "1.4.0"
2155 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2156 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
2157 |
2158 | node-releases@^1.1.71:
2159 | version "1.1.71"
2160 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"
2161 | integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==
2162 |
2163 | node-releases@^2.0.1:
2164 | version "2.0.1"
2165 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5"
2166 | integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==
2167 |
2168 | normalize-path@^3.0.0, normalize-path@~3.0.0:
2169 | version "3.0.0"
2170 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2171 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2172 |
2173 | object-keys@^1.0.12, object-keys@^1.1.1:
2174 | version "1.1.1"
2175 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2176 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2177 |
2178 | object.assign@^4.1.0:
2179 | version "4.1.2"
2180 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
2181 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
2182 | dependencies:
2183 | call-bind "^1.0.0"
2184 | define-properties "^1.1.3"
2185 | has-symbols "^1.0.1"
2186 | object-keys "^1.1.1"
2187 |
2188 | once@^1.3.0:
2189 | version "1.4.0"
2190 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2191 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2192 | dependencies:
2193 | wrappy "1"
2194 |
2195 | optionator@^0.9.1:
2196 | version "0.9.1"
2197 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
2198 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
2199 | dependencies:
2200 | deep-is "^0.1.3"
2201 | fast-levenshtein "^2.0.6"
2202 | levn "^0.4.1"
2203 | prelude-ls "^1.2.1"
2204 | type-check "^0.4.0"
2205 | word-wrap "^1.2.3"
2206 |
2207 | parent-module@^1.0.0:
2208 | version "1.0.1"
2209 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2210 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2211 | dependencies:
2212 | callsites "^3.0.0"
2213 |
2214 | path-is-absolute@^1.0.0:
2215 | version "1.0.1"
2216 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2217 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2218 |
2219 | path-key@^3.1.0:
2220 | version "3.1.1"
2221 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
2222 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
2223 |
2224 | path-parse@^1.0.6:
2225 | version "1.0.6"
2226 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
2227 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
2228 |
2229 | path-type@^4.0.0:
2230 | version "4.0.0"
2231 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
2232 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
2233 |
2234 | phoenix@1.6.16:
2235 | version "1.6.16"
2236 | resolved "https://registry.yarnpkg.com/phoenix/-/phoenix-1.6.16.tgz#fd92e87cd0c7cd36a99c6f168beeeb46afde7932"
2237 | integrity sha512-3vOfu5olbFg6eBNkF4pnwMzNm7unl/4vy24MW+zxKklVgjq1zLnO2EWq9wz6i6r4PbQ0CGxHGtqKJH2VSsnhaA==
2238 |
2239 | picocolors@^1.0.0:
2240 | version "1.0.0"
2241 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2242 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2243 |
2244 | picomatch@^2.0.4, picomatch@^2.2.1:
2245 | version "2.2.3"
2246 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d"
2247 | integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
2248 |
2249 | picomatch@^2.2.3:
2250 | version "2.3.1"
2251 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2252 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2253 |
2254 | pify@^4.0.1:
2255 | version "4.0.1"
2256 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
2257 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
2258 |
2259 | prelude-ls@^1.2.1:
2260 | version "1.2.1"
2261 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
2262 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
2263 |
2264 | prettier@^2.2.1:
2265 | version "2.2.1"
2266 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
2267 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
2268 |
2269 | progress@^2.0.0:
2270 | version "2.0.3"
2271 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
2272 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
2273 |
2274 | proxy-from-env@^1.1.0:
2275 | version "1.1.0"
2276 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
2277 | integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
2278 |
2279 | punycode@^2.1.0:
2280 | version "2.1.1"
2281 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2282 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2283 |
2284 | queue-microtask@^1.2.2:
2285 | version "1.2.3"
2286 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
2287 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
2288 |
2289 | readdirp@~3.5.0:
2290 | version "3.5.0"
2291 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
2292 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
2293 | dependencies:
2294 | picomatch "^2.2.1"
2295 |
2296 | regenerate-unicode-properties@^8.2.0:
2297 | version "8.2.0"
2298 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
2299 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
2300 | dependencies:
2301 | regenerate "^1.4.0"
2302 |
2303 | regenerate@^1.4.0:
2304 | version "1.4.2"
2305 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
2306 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
2307 |
2308 | regenerator-runtime@^0.13.4:
2309 | version "0.13.7"
2310 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
2311 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
2312 |
2313 | regenerator-transform@^0.14.2:
2314 | version "0.14.5"
2315 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
2316 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
2317 | dependencies:
2318 | "@babel/runtime" "^7.8.4"
2319 |
2320 | regexpp@^3.1.0, regexpp@^3.2.0:
2321 | version "3.2.0"
2322 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
2323 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
2324 |
2325 | regexpu-core@^4.7.1:
2326 | version "4.7.1"
2327 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
2328 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
2329 | dependencies:
2330 | regenerate "^1.4.0"
2331 | regenerate-unicode-properties "^8.2.0"
2332 | regjsgen "^0.5.1"
2333 | regjsparser "^0.6.4"
2334 | unicode-match-property-ecmascript "^1.0.4"
2335 | unicode-match-property-value-ecmascript "^1.2.0"
2336 |
2337 | regjsgen@^0.5.1:
2338 | version "0.5.2"
2339 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
2340 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
2341 |
2342 | regjsparser@^0.6.4:
2343 | version "0.6.9"
2344 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
2345 | integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
2346 | dependencies:
2347 | jsesc "~0.5.0"
2348 |
2349 | require-from-string@^2.0.2:
2350 | version "2.0.2"
2351 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
2352 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
2353 |
2354 | resolve-from@^4.0.0:
2355 | version "4.0.0"
2356 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
2357 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
2358 |
2359 | resolve@^1.14.2:
2360 | version "1.20.0"
2361 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
2362 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
2363 | dependencies:
2364 | is-core-module "^2.2.0"
2365 | path-parse "^1.0.6"
2366 |
2367 | reusify@^1.0.4:
2368 | version "1.0.4"
2369 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
2370 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
2371 |
2372 | rimraf@^3.0.2:
2373 | version "3.0.2"
2374 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2375 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2376 | dependencies:
2377 | glob "^7.1.3"
2378 |
2379 | rollup@^2.46.0:
2380 | version "2.46.0"
2381 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.46.0.tgz#8cacf89d2ee31a34755f1af40a665168f592b829"
2382 | integrity sha512-qPGoUBNl+Z8uNu0z7pD3WPTABWRbcOwIrO/5ccDJzmrtzn0LVf6Lj91+L5CcWhXl6iWf23FQ6m8Jkl2CmN1O7Q==
2383 | optionalDependencies:
2384 | fsevents "~2.3.1"
2385 |
2386 | run-parallel@^1.1.9:
2387 | version "1.2.0"
2388 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
2389 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
2390 | dependencies:
2391 | queue-microtask "^1.2.2"
2392 |
2393 | safe-buffer@~5.1.1:
2394 | version "5.1.2"
2395 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2396 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2397 |
2398 | semver@7.0.0:
2399 | version "7.0.0"
2400 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
2401 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
2402 |
2403 | semver@^5.6.0:
2404 | version "5.7.1"
2405 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2406 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2407 |
2408 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
2409 | version "6.3.0"
2410 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2411 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2412 |
2413 | semver@^7.2.1, semver@^7.3.5:
2414 | version "7.3.5"
2415 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
2416 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
2417 | dependencies:
2418 | lru-cache "^6.0.0"
2419 |
2420 | shebang-command@^2.0.0:
2421 | version "2.0.0"
2422 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2423 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2424 | dependencies:
2425 | shebang-regex "^3.0.0"
2426 |
2427 | shebang-regex@^3.0.0:
2428 | version "3.0.0"
2429 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2430 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2431 |
2432 | slash@^2.0.0:
2433 | version "2.0.0"
2434 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
2435 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
2436 |
2437 | slash@^3.0.0:
2438 | version "3.0.0"
2439 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2440 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2441 |
2442 | slice-ansi@^4.0.0:
2443 | version "4.0.0"
2444 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
2445 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
2446 | dependencies:
2447 | ansi-styles "^4.0.0"
2448 | astral-regex "^2.0.0"
2449 | is-fullwidth-code-point "^3.0.0"
2450 |
2451 | source-map@^0.5.0:
2452 | version "0.5.7"
2453 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2454 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2455 |
2456 | sprintf-js@~1.0.2:
2457 | version "1.0.3"
2458 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2459 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2460 |
2461 | string-width@^4.2.3:
2462 | version "4.2.3"
2463 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
2464 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
2465 | dependencies:
2466 | emoji-regex "^8.0.0"
2467 | is-fullwidth-code-point "^3.0.0"
2468 | strip-ansi "^6.0.1"
2469 |
2470 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
2471 | version "6.0.1"
2472 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
2473 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2474 | dependencies:
2475 | ansi-regex "^5.0.1"
2476 |
2477 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2478 | version "3.1.1"
2479 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2480 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2481 |
2482 | supports-color@^5.3.0:
2483 | version "5.5.0"
2484 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2485 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2486 | dependencies:
2487 | has-flag "^3.0.0"
2488 |
2489 | supports-color@^7.1.0:
2490 | version "7.2.0"
2491 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2492 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2493 | dependencies:
2494 | has-flag "^4.0.0"
2495 |
2496 | table@^6.0.4:
2497 | version "6.8.0"
2498 | resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca"
2499 | integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==
2500 | dependencies:
2501 | ajv "^8.0.1"
2502 | lodash.truncate "^4.4.2"
2503 | slice-ansi "^4.0.0"
2504 | string-width "^4.2.3"
2505 | strip-ansi "^6.0.1"
2506 |
2507 | text-table@^0.2.0:
2508 | version "0.2.0"
2509 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2510 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
2511 |
2512 | to-fast-properties@^2.0.0:
2513 | version "2.0.0"
2514 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2515 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
2516 |
2517 | to-regex-range@^5.0.1:
2518 | version "5.0.1"
2519 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2520 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2521 | dependencies:
2522 | is-number "^7.0.0"
2523 |
2524 | tslib@^1.8.1:
2525 | version "1.14.1"
2526 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2527 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2528 |
2529 | tsutils@^3.21.0:
2530 | version "3.21.0"
2531 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
2532 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2533 | dependencies:
2534 | tslib "^1.8.1"
2535 |
2536 | type-check@^0.4.0, type-check@~0.4.0:
2537 | version "0.4.0"
2538 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
2539 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2540 | dependencies:
2541 | prelude-ls "^1.2.1"
2542 |
2543 | type-fest@^0.20.2:
2544 | version "0.20.2"
2545 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
2546 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2547 |
2548 | typescript@^4.2.4:
2549 | version "4.2.4"
2550 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961"
2551 | integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==
2552 |
2553 | unicode-canonical-property-names-ecmascript@^1.0.4:
2554 | version "1.0.4"
2555 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
2556 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
2557 |
2558 | unicode-match-property-ecmascript@^1.0.4:
2559 | version "1.0.4"
2560 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
2561 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
2562 | dependencies:
2563 | unicode-canonical-property-names-ecmascript "^1.0.4"
2564 | unicode-property-aliases-ecmascript "^1.0.4"
2565 |
2566 | unicode-match-property-value-ecmascript@^1.2.0:
2567 | version "1.2.0"
2568 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
2569 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
2570 |
2571 | unicode-property-aliases-ecmascript@^1.0.4:
2572 | version "1.1.0"
2573 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
2574 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
2575 |
2576 | uri-js@^4.2.2:
2577 | version "4.4.1"
2578 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2579 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2580 | dependencies:
2581 | punycode "^2.1.0"
2582 |
2583 | v8-compile-cache@^2.0.3:
2584 | version "2.3.0"
2585 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2586 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2587 |
2588 | which@^2.0.1:
2589 | version "2.0.2"
2590 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2591 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2592 | dependencies:
2593 | isexe "^2.0.0"
2594 |
2595 | word-wrap@^1.2.3:
2596 | version "1.2.3"
2597 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2598 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2599 |
2600 | wrappy@1:
2601 | version "1.0.2"
2602 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2603 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2604 |
2605 | yallist@^4.0.0:
2606 | version "4.0.0"
2607 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2608 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2609 |
2610 | zustand@^3.7.2:
2611 | version "3.7.2"
2612 | resolved "https://registry.yarnpkg.com/zustand/-/zustand-3.7.2.tgz#7b44c4f4a5bfd7a8296a3957b13e1c346f42514d"
2613 | integrity sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==
2614 |
--------------------------------------------------------------------------------