├── .github
├── FUNDING.yml
└── workflows
│ └── deploy.yml
├── .gitignore
├── LICENSE
├── README.md
├── index.html
├── lambda
├── README.md
└── lambda_function.py
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── apple-touch-icon.png
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon.ico
├── opensearch.xml
├── redditle.png
└── site.webmanifest
├── src
├── App.vue
├── components
│ ├── Main.vue
│ └── Results.vue
├── env.d.ts
├── index.css
├── main.ts
└── router
│ └── index.ts
├── tailwind.config.js
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [greentfrapp]
4 |
--------------------------------------------------------------------------------
/.github/workflows/deploy.yml:
--------------------------------------------------------------------------------
1 | name: Deploy
2 |
3 | on:
4 | push:
5 | branches: [ main ]
6 | pull_request:
7 | branches: [ main ]
8 | workflow_dispatch:
9 |
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v2
15 | - uses: actions/setup-node@v3.0.0
16 | with:
17 | node-version: 16
18 | - run: npm i
19 | - run: VITE_LAMBDA=${{ secrets.LAMBDA }} npm run build
20 | - uses: aws-actions/configure-aws-credentials@v1
21 | with:
22 | aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
23 | aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
24 | aws-region: ${{ secrets.AWS_REGION }}
25 | - run: aws s3 sync ./dist s3://${{ secrets.AWS_S3_BUCKET }}
26 | - name: Invalidate Cloudfront
27 | uses: chetan/invalidate-cloudfront-action@v1.3
28 | env:
29 | DISTRIBUTION: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION }}
30 | PATHS: '/*'
31 | AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
32 | AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
33 | AWS_REGION: ${{ secrets.AWS_REGION }}
34 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # redditle
2 |
3 | [https://redditle.com](https://redditle.com)
4 |
5 | For those of us who add 'reddit' to every Google search
6 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
21 | Redditle - Reddit-only Google Search
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/lambda/README.md:
--------------------------------------------------------------------------------
1 | # AWS Lambda script for redditle
2 |
3 | This is the AWS Lambda script that is queried by the client.
4 |
5 | ## Instructions
6 |
7 | Note: this only works on <= Python 3.7. It does not work on Python 3.8 or 3.9.
8 |
9 | See instructions [here](https://medium.com/limehome-engineering/running-pyppeteer-on-aws-lambda-with-serverless-62313b3fe3e2) to set up Pyppeteer in S3.
10 |
--------------------------------------------------------------------------------
/lambda/lambda_function.py:
--------------------------------------------------------------------------------
1 | import json
2 | import boto3
3 | import zipfile
4 | import subprocess
5 | import os
6 | import asyncio
7 | from pyppeteer import launch
8 | import re
9 |
10 | s3_bucket = boto3.resource("s3").Bucket(os.environ.get('BUCKET_NAME'))
11 |
12 | S3_PATH = 'stable-headless-chromium-amazonlinux-2017-03.zip'
13 | BROWSER = None
14 |
15 | zip_file_path = "/tmp/chrome.zip"
16 | if not os.path.exists(zip_file_path):
17 | s3_bucket.download_file(S3_PATH, zip_file_path)
18 | with zipfile.ZipFile(zip_file_path, "r") as zip_ref:
19 | zip_ref.extractall("/tmp")
20 | subprocess.run(["chmod", "+x", "/tmp/headless-chromium"], check=True)
21 |
22 |
23 | async def helper(url):
24 | browser = await launch(
25 | args=[
26 | "--no-sandbox",
27 | "--single-process",
28 | "--disable-dev-shm-usage",
29 | "--disable-gpu",
30 | "--no-zygote",
31 | ],
32 | executablePath="/tmp/headless-chromium",
33 | userDataDir="/tmp",
34 | )
35 | # browser = await launch()
36 |
37 | page = await browser.newPage()
38 |
39 | await page.goto(url, {'waitUntil': 'domcontentloaded'})
40 |
41 | stats_div = await page.querySelector('div#slim_appbar')
42 | stats = await page.evaluate('(e) => e.textContent', stats_div)
43 |
44 | results_divs = await page.querySelectorAll('div.g')
45 | titles = [await page.evaluate('(e) => e.querySelector("h3").textContent', div) for div in results_divs]
46 | hrefs = [await page.evaluate('(e) => e.querySelector("a").href', div) for div in results_divs]
47 | try:
48 | descriptions = [await page.evaluate('(e) => e.querySelector("div[style=\'-webkit-line-clamp:2\']").textContent', div) for div in results_divs]
49 | except:
50 | try:
51 | descriptions = [await page.evaluate('(e) => e.querySelector("div[data-content-feature=\\"1\\"]").textContent', div) for div in results_divs]
52 | except:
53 | div_text = [await page.evaluate('(e) => e.textContent', div) for div in results_divs]
54 | descriptions = []
55 | for text in div_text:
56 | chunks = text.split('...')
57 | if len(chunks[-1]) > 1:
58 | desc = chunks[-1].strip()
59 | else:
60 | desc = chunks[-2].strip() + ' ...'
61 | descriptions.append(desc)
62 |
63 | results = [{"title": title, "href": href, "desc": desc} for title, href, desc in zip(titles, hrefs, descriptions)]
64 |
65 | await browser.close()
66 |
67 | return stats, results
68 |
69 |
70 | def lambda_handler(event, context):
71 | body = json.loads(event["body"])
72 | query = body.get("query")
73 | if query: query = query.replace('&', '%26')
74 | start = body.get("start")
75 | template_url = "https://www.google.com/search?q=site:reddit.com/"
76 | # Check if there is an r/ restriction which should be at the start of the query
77 | subreddit_matches = re.search(r'^(r/.*?)(\s|$)', query)
78 | if subreddit_matches:
79 | # Directly append query to end of template
80 | if start:
81 | query_url = f'{template_url}{query}&start={start}'
82 | else:
83 | query_url = f'{template_url}{query}'
84 | else:
85 | if start:
86 | query_url = f'{template_url} {query}&start={start}'
87 | else:
88 | query_url = f'{template_url} {query}'
89 | stats, results = asyncio.get_event_loop().run_until_complete(helper(query_url))
90 | return {
91 | 'statusCode': 200,
92 | 'body': json.dumps({
93 | "stats": stats,
94 | "results": results,
95 | })
96 | }
97 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "redditle",
3 | "version": "0.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@babel/code-frame": {
8 | "version": "7.16.7",
9 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
10 | "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
11 | "dev": true,
12 | "requires": {
13 | "@babel/highlight": "^7.16.7"
14 | }
15 | },
16 | "@babel/helper-validator-identifier": {
17 | "version": "7.16.7",
18 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
19 | "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
20 | "dev": true
21 | },
22 | "@babel/highlight": {
23 | "version": "7.16.10",
24 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz",
25 | "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==",
26 | "dev": true,
27 | "requires": {
28 | "@babel/helper-validator-identifier": "^7.16.7",
29 | "chalk": "^2.0.0",
30 | "js-tokens": "^4.0.0"
31 | },
32 | "dependencies": {
33 | "ansi-styles": {
34 | "version": "3.2.1",
35 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
36 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
37 | "dev": true,
38 | "requires": {
39 | "color-convert": "^1.9.0"
40 | }
41 | },
42 | "chalk": {
43 | "version": "2.4.2",
44 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
45 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
46 | "dev": true,
47 | "requires": {
48 | "ansi-styles": "^3.2.1",
49 | "escape-string-regexp": "^1.0.5",
50 | "supports-color": "^5.3.0"
51 | }
52 | },
53 | "color-convert": {
54 | "version": "1.9.3",
55 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
56 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
57 | "dev": true,
58 | "requires": {
59 | "color-name": "1.1.3"
60 | }
61 | },
62 | "color-name": {
63 | "version": "1.1.3",
64 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
65 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
66 | "dev": true
67 | },
68 | "has-flag": {
69 | "version": "3.0.0",
70 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
71 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
72 | "dev": true
73 | },
74 | "supports-color": {
75 | "version": "5.5.0",
76 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
77 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
78 | "dev": true,
79 | "requires": {
80 | "has-flag": "^3.0.0"
81 | }
82 | }
83 | }
84 | },
85 | "@babel/parser": {
86 | "version": "7.17.8",
87 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz",
88 | "integrity": "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="
89 | },
90 | "@babel/types": {
91 | "version": "7.17.0",
92 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz",
93 | "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==",
94 | "dev": true,
95 | "requires": {
96 | "@babel/helper-validator-identifier": "^7.16.7",
97 | "to-fast-properties": "^2.0.0"
98 | }
99 | },
100 | "@emmetio/abbreviation": {
101 | "version": "2.2.3",
102 | "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.3.tgz",
103 | "integrity": "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==",
104 | "dev": true,
105 | "requires": {
106 | "@emmetio/scanner": "^1.0.0"
107 | }
108 | },
109 | "@emmetio/css-abbreviation": {
110 | "version": "2.1.4",
111 | "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz",
112 | "integrity": "sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==",
113 | "dev": true,
114 | "requires": {
115 | "@emmetio/scanner": "^1.0.0"
116 | }
117 | },
118 | "@emmetio/scanner": {
119 | "version": "1.0.0",
120 | "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz",
121 | "integrity": "sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==",
122 | "dev": true
123 | },
124 | "@headlessui/vue": {
125 | "version": "1.5.0",
126 | "resolved": "https://registry.npmjs.org/@headlessui/vue/-/vue-1.5.0.tgz",
127 | "integrity": "sha512-jAp6XYpqdEv32xhszaj5ejvjaX5qhu20sCbxu7lplePEfZL+4ffabivJBBTZAiPWczqAXmnZWNWG5DOyqjRa4w=="
128 | },
129 | "@heroicons/vue": {
130 | "version": "1.0.6",
131 | "resolved": "https://registry.npmjs.org/@heroicons/vue/-/vue-1.0.6.tgz",
132 | "integrity": "sha512-ng2YcCQrdoQWEFpw+ipFl2rZo8mZ56v0T5+MyfQQvNqfKChwgP6DMloZLW+rl17GEcHkE3H82UTAMKBKZr4+WA=="
133 | },
134 | "@nodelib/fs.scandir": {
135 | "version": "2.1.5",
136 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
137 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
138 | "dev": true,
139 | "requires": {
140 | "@nodelib/fs.stat": "2.0.5",
141 | "run-parallel": "^1.1.9"
142 | }
143 | },
144 | "@nodelib/fs.stat": {
145 | "version": "2.0.5",
146 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
147 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
148 | "dev": true
149 | },
150 | "@nodelib/fs.walk": {
151 | "version": "1.2.8",
152 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
153 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
154 | "dev": true,
155 | "requires": {
156 | "@nodelib/fs.scandir": "2.1.5",
157 | "fastq": "^1.6.0"
158 | }
159 | },
160 | "@tailwindcss/forms": {
161 | "version": "0.5.0",
162 | "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.0.tgz",
163 | "integrity": "sha512-KzWugryEBFkmoaYcBE18rs6gthWCFHHO7cAZm2/hv3hwD67AzwP7udSCa22E7R1+CEJL/FfhYsJWrc0b1aeSzw==",
164 | "requires": {
165 | "mini-svg-data-uri": "^1.2.3"
166 | }
167 | },
168 | "@types/parse-json": {
169 | "version": "4.0.0",
170 | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
171 | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
172 | "dev": true
173 | },
174 | "@vitejs/plugin-vue": {
175 | "version": "2.3.1",
176 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-2.3.1.tgz",
177 | "integrity": "sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ==",
178 | "dev": true
179 | },
180 | "@volar/code-gen": {
181 | "version": "0.29.8",
182 | "resolved": "https://registry.npmjs.org/@volar/code-gen/-/code-gen-0.29.8.tgz",
183 | "integrity": "sha512-eohLLUqPChHRPDFT5gXn4V6pr/CeTri7Ou5GI26lUvBRRAbP8p+oYfQRcbMPGeKmVkYjfVj0chsxQGx6T8PQ4Q==",
184 | "dev": true,
185 | "requires": {
186 | "@volar/shared": "0.29.8",
187 | "@volar/source-map": "0.29.8"
188 | }
189 | },
190 | "@volar/html2pug": {
191 | "version": "0.29.8",
192 | "resolved": "https://registry.npmjs.org/@volar/html2pug/-/html2pug-0.29.8.tgz",
193 | "integrity": "sha512-bhSNXg8A2aD3w0B+CwmHjqCAaKtj5rORbE5C/q/UdGqptJbC6STCmi30KuRTdfPhR++Xb18Hauf3s/WCmtNAPA==",
194 | "dev": true,
195 | "requires": {
196 | "domelementtype": "^2.2.0",
197 | "domhandler": "^4.2.2",
198 | "htmlparser2": "^7.1.2",
199 | "pug": "^3.0.2"
200 | }
201 | },
202 | "@volar/shared": {
203 | "version": "0.29.8",
204 | "resolved": "https://registry.npmjs.org/@volar/shared/-/shared-0.29.8.tgz",
205 | "integrity": "sha512-Y1NN6irkIukD+T0wf4p/dHWYL90sacN2e2lYoDXxRlvoYxwANnHgw0J0Rcp+yw58ElWRScdG7/YntEIuZWeJsw==",
206 | "dev": true,
207 | "requires": {
208 | "upath": "^2.0.1",
209 | "vscode-jsonrpc": "^8.0.0-next.2",
210 | "vscode-uri": "^3.0.2"
211 | }
212 | },
213 | "@volar/source-map": {
214 | "version": "0.29.8",
215 | "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-0.29.8.tgz",
216 | "integrity": "sha512-7w+UoYtnc6UQu30CgMVvx0YN4dzDgP4TIsSmUaW62AGmxU9Lxwp3Kkn/4N8efi91z8ma5Z78v/HddyJPwAC3LA==",
217 | "dev": true,
218 | "requires": {
219 | "@volar/shared": "0.29.8"
220 | }
221 | },
222 | "@volar/transforms": {
223 | "version": "0.29.8",
224 | "resolved": "https://registry.npmjs.org/@volar/transforms/-/transforms-0.29.8.tgz",
225 | "integrity": "sha512-o2hRa8CoDwYTO1Mu5KA47+1elUnYUjDaVhCvbyKlRfd8qpHea2llotArq7B6OORSL2M9DVs1IRJ5NGURBFeZ3Q==",
226 | "dev": true,
227 | "requires": {
228 | "@volar/shared": "0.29.8",
229 | "vscode-languageserver": "^8.0.0-next.2"
230 | }
231 | },
232 | "@volar/vue-code-gen": {
233 | "version": "0.29.8",
234 | "resolved": "https://registry.npmjs.org/@volar/vue-code-gen/-/vue-code-gen-0.29.8.tgz",
235 | "integrity": "sha512-E1e7P2oktNC/DzgDBditfla4s8+HlUlluZ+BtcLvEdbkl3QEjujkB0x1wxguWzXmpWgLIDPtrS3Jzll5cCOkTg==",
236 | "dev": true,
237 | "requires": {
238 | "@volar/code-gen": "0.29.8",
239 | "@volar/shared": "0.29.8",
240 | "@volar/source-map": "0.29.8",
241 | "@vue/compiler-core": "^3.2.21",
242 | "@vue/compiler-dom": "^3.2.21",
243 | "@vue/shared": "^3.2.21",
244 | "upath": "^2.0.1"
245 | }
246 | },
247 | "@vscode/emmet-helper": {
248 | "version": "2.8.4",
249 | "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.8.4.tgz",
250 | "integrity": "sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg==",
251 | "dev": true,
252 | "requires": {
253 | "emmet": "^2.3.0",
254 | "jsonc-parser": "^2.3.0",
255 | "vscode-languageserver-textdocument": "^1.0.1",
256 | "vscode-languageserver-types": "^3.15.1",
257 | "vscode-nls": "^5.0.0",
258 | "vscode-uri": "^2.1.2"
259 | },
260 | "dependencies": {
261 | "vscode-languageserver-types": {
262 | "version": "3.16.0",
263 | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz",
264 | "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==",
265 | "dev": true
266 | },
267 | "vscode-uri": {
268 | "version": "2.1.2",
269 | "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz",
270 | "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==",
271 | "dev": true
272 | }
273 | }
274 | },
275 | "@vue/compiler-core": {
276 | "version": "3.2.31",
277 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.31.tgz",
278 | "integrity": "sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==",
279 | "requires": {
280 | "@babel/parser": "^7.16.4",
281 | "@vue/shared": "3.2.31",
282 | "estree-walker": "^2.0.2",
283 | "source-map": "^0.6.1"
284 | }
285 | },
286 | "@vue/compiler-dom": {
287 | "version": "3.2.31",
288 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.31.tgz",
289 | "integrity": "sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg==",
290 | "requires": {
291 | "@vue/compiler-core": "3.2.31",
292 | "@vue/shared": "3.2.31"
293 | }
294 | },
295 | "@vue/compiler-sfc": {
296 | "version": "3.2.31",
297 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.31.tgz",
298 | "integrity": "sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==",
299 | "requires": {
300 | "@babel/parser": "^7.16.4",
301 | "@vue/compiler-core": "3.2.31",
302 | "@vue/compiler-dom": "3.2.31",
303 | "@vue/compiler-ssr": "3.2.31",
304 | "@vue/reactivity-transform": "3.2.31",
305 | "@vue/shared": "3.2.31",
306 | "estree-walker": "^2.0.2",
307 | "magic-string": "^0.25.7",
308 | "postcss": "^8.1.10",
309 | "source-map": "^0.6.1"
310 | }
311 | },
312 | "@vue/compiler-ssr": {
313 | "version": "3.2.31",
314 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.31.tgz",
315 | "integrity": "sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw==",
316 | "requires": {
317 | "@vue/compiler-dom": "3.2.31",
318 | "@vue/shared": "3.2.31"
319 | }
320 | },
321 | "@vue/devtools-api": {
322 | "version": "6.1.4",
323 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.1.4.tgz",
324 | "integrity": "sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ=="
325 | },
326 | "@vue/reactivity": {
327 | "version": "3.2.31",
328 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.31.tgz",
329 | "integrity": "sha512-HVr0l211gbhpEKYr2hYe7hRsV91uIVGFYNHj73njbARVGHQvIojkImKMaZNDdoDZOIkMsBc9a1sMqR+WZwfSCw==",
330 | "requires": {
331 | "@vue/shared": "3.2.31"
332 | }
333 | },
334 | "@vue/reactivity-transform": {
335 | "version": "3.2.31",
336 | "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.31.tgz",
337 | "integrity": "sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==",
338 | "requires": {
339 | "@babel/parser": "^7.16.4",
340 | "@vue/compiler-core": "3.2.31",
341 | "@vue/shared": "3.2.31",
342 | "estree-walker": "^2.0.2",
343 | "magic-string": "^0.25.7"
344 | }
345 | },
346 | "@vue/runtime-core": {
347 | "version": "3.2.31",
348 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.31.tgz",
349 | "integrity": "sha512-Kcog5XmSY7VHFEMuk4+Gap8gUssYMZ2+w+cmGI6OpZWYOEIcbE0TPzzPHi+8XTzAgx1w/ZxDFcXhZeXN5eKWsA==",
350 | "requires": {
351 | "@vue/reactivity": "3.2.31",
352 | "@vue/shared": "3.2.31"
353 | }
354 | },
355 | "@vue/runtime-dom": {
356 | "version": "3.2.31",
357 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.31.tgz",
358 | "integrity": "sha512-N+o0sICVLScUjfLG7u9u5XCjvmsexAiPt17GNnaWHJUfsKed5e85/A3SWgKxzlxx2SW/Hw7RQxzxbXez9PtY3g==",
359 | "requires": {
360 | "@vue/runtime-core": "3.2.31",
361 | "@vue/shared": "3.2.31",
362 | "csstype": "^2.6.8"
363 | }
364 | },
365 | "@vue/server-renderer": {
366 | "version": "3.2.31",
367 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.31.tgz",
368 | "integrity": "sha512-8CN3Zj2HyR2LQQBHZ61HexF5NReqngLT3oahyiVRfSSvak+oAvVmu8iNLSu6XR77Ili2AOpnAt1y8ywjjqtmkg==",
369 | "requires": {
370 | "@vue/compiler-ssr": "3.2.31",
371 | "@vue/shared": "3.2.31"
372 | }
373 | },
374 | "@vue/shared": {
375 | "version": "3.2.31",
376 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.31.tgz",
377 | "integrity": "sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ=="
378 | },
379 | "acorn": {
380 | "version": "7.4.1",
381 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
382 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
383 | "dev": true
384 | },
385 | "acorn-node": {
386 | "version": "1.8.2",
387 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
388 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
389 | "dev": true,
390 | "requires": {
391 | "acorn": "^7.0.0",
392 | "acorn-walk": "^7.0.0",
393 | "xtend": "^4.0.2"
394 | }
395 | },
396 | "acorn-walk": {
397 | "version": "7.2.0",
398 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
399 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
400 | "dev": true
401 | },
402 | "ansi-styles": {
403 | "version": "4.3.0",
404 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
405 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
406 | "dev": true,
407 | "requires": {
408 | "color-convert": "^2.0.1"
409 | }
410 | },
411 | "anymatch": {
412 | "version": "3.1.2",
413 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
414 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
415 | "dev": true,
416 | "requires": {
417 | "normalize-path": "^3.0.0",
418 | "picomatch": "^2.0.4"
419 | }
420 | },
421 | "arg": {
422 | "version": "5.0.1",
423 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
424 | "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==",
425 | "dev": true
426 | },
427 | "asap": {
428 | "version": "2.0.6",
429 | "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
430 | "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
431 | "dev": true
432 | },
433 | "assert-never": {
434 | "version": "1.2.1",
435 | "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz",
436 | "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==",
437 | "dev": true
438 | },
439 | "autoprefixer": {
440 | "version": "10.4.4",
441 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.4.tgz",
442 | "integrity": "sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==",
443 | "dev": true,
444 | "requires": {
445 | "browserslist": "^4.20.2",
446 | "caniuse-lite": "^1.0.30001317",
447 | "fraction.js": "^4.2.0",
448 | "normalize-range": "^0.1.2",
449 | "picocolors": "^1.0.0",
450 | "postcss-value-parser": "^4.2.0"
451 | }
452 | },
453 | "babel-walk": {
454 | "version": "3.0.0-canary-5",
455 | "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz",
456 | "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==",
457 | "dev": true,
458 | "requires": {
459 | "@babel/types": "^7.9.6"
460 | }
461 | },
462 | "binary-extensions": {
463 | "version": "2.2.0",
464 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
465 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
466 | "dev": true
467 | },
468 | "braces": {
469 | "version": "3.0.2",
470 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
471 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
472 | "dev": true,
473 | "requires": {
474 | "fill-range": "^7.0.1"
475 | }
476 | },
477 | "browserslist": {
478 | "version": "4.20.2",
479 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz",
480 | "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==",
481 | "dev": true,
482 | "requires": {
483 | "caniuse-lite": "^1.0.30001317",
484 | "electron-to-chromium": "^1.4.84",
485 | "escalade": "^3.1.1",
486 | "node-releases": "^2.0.2",
487 | "picocolors": "^1.0.0"
488 | }
489 | },
490 | "call-bind": {
491 | "version": "1.0.2",
492 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
493 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
494 | "dev": true,
495 | "requires": {
496 | "function-bind": "^1.1.1",
497 | "get-intrinsic": "^1.0.2"
498 | }
499 | },
500 | "callsites": {
501 | "version": "3.1.0",
502 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
503 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
504 | "dev": true
505 | },
506 | "camelcase-css": {
507 | "version": "2.0.1",
508 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
509 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
510 | "dev": true
511 | },
512 | "caniuse-lite": {
513 | "version": "1.0.30001325",
514 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001325.tgz",
515 | "integrity": "sha512-sB1bZHjseSjDtijV1Hb7PB2Zd58Kyx+n/9EotvZ4Qcz2K3d0lWB8dB4nb8wN/TsOGFq3UuAm0zQZNQ4SoR7TrQ==",
516 | "dev": true
517 | },
518 | "chalk": {
519 | "version": "4.1.2",
520 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
521 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
522 | "dev": true,
523 | "requires": {
524 | "ansi-styles": "^4.1.0",
525 | "supports-color": "^7.1.0"
526 | }
527 | },
528 | "character-parser": {
529 | "version": "2.2.0",
530 | "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
531 | "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=",
532 | "dev": true,
533 | "requires": {
534 | "is-regex": "^1.0.3"
535 | }
536 | },
537 | "chokidar": {
538 | "version": "3.5.3",
539 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
540 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
541 | "dev": true,
542 | "requires": {
543 | "anymatch": "~3.1.2",
544 | "braces": "~3.0.2",
545 | "fsevents": "~2.3.2",
546 | "glob-parent": "~5.1.2",
547 | "is-binary-path": "~2.1.0",
548 | "is-glob": "~4.0.1",
549 | "normalize-path": "~3.0.0",
550 | "readdirp": "~3.6.0"
551 | },
552 | "dependencies": {
553 | "glob-parent": {
554 | "version": "5.1.2",
555 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
556 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
557 | "dev": true,
558 | "requires": {
559 | "is-glob": "^4.0.1"
560 | }
561 | }
562 | }
563 | },
564 | "color-convert": {
565 | "version": "2.0.1",
566 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
567 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
568 | "dev": true,
569 | "requires": {
570 | "color-name": "~1.1.4"
571 | }
572 | },
573 | "color-name": {
574 | "version": "1.1.4",
575 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
576 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
577 | "dev": true
578 | },
579 | "constantinople": {
580 | "version": "4.0.1",
581 | "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz",
582 | "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==",
583 | "dev": true,
584 | "requires": {
585 | "@babel/parser": "^7.6.0",
586 | "@babel/types": "^7.6.1"
587 | }
588 | },
589 | "cosmiconfig": {
590 | "version": "7.0.1",
591 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
592 | "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
593 | "dev": true,
594 | "requires": {
595 | "@types/parse-json": "^4.0.0",
596 | "import-fresh": "^3.2.1",
597 | "parse-json": "^5.0.0",
598 | "path-type": "^4.0.0",
599 | "yaml": "^1.10.0"
600 | }
601 | },
602 | "cssesc": {
603 | "version": "3.0.0",
604 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
605 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
606 | "dev": true
607 | },
608 | "csstype": {
609 | "version": "2.6.20",
610 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.20.tgz",
611 | "integrity": "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA=="
612 | },
613 | "defined": {
614 | "version": "1.0.0",
615 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
616 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=",
617 | "dev": true
618 | },
619 | "detective": {
620 | "version": "5.2.0",
621 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz",
622 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==",
623 | "dev": true,
624 | "requires": {
625 | "acorn-node": "^1.6.1",
626 | "defined": "^1.0.0",
627 | "minimist": "^1.1.1"
628 | }
629 | },
630 | "didyoumean": {
631 | "version": "1.2.2",
632 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
633 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
634 | "dev": true
635 | },
636 | "dlv": {
637 | "version": "1.1.3",
638 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
639 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
640 | "dev": true
641 | },
642 | "doctypes": {
643 | "version": "1.1.0",
644 | "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
645 | "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=",
646 | "dev": true
647 | },
648 | "dom-serializer": {
649 | "version": "1.3.2",
650 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
651 | "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
652 | "dev": true,
653 | "requires": {
654 | "domelementtype": "^2.0.1",
655 | "domhandler": "^4.2.0",
656 | "entities": "^2.0.0"
657 | },
658 | "dependencies": {
659 | "entities": {
660 | "version": "2.2.0",
661 | "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
662 | "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
663 | "dev": true
664 | }
665 | }
666 | },
667 | "domelementtype": {
668 | "version": "2.2.0",
669 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
670 | "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
671 | "dev": true
672 | },
673 | "domhandler": {
674 | "version": "4.3.1",
675 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
676 | "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
677 | "dev": true,
678 | "requires": {
679 | "domelementtype": "^2.2.0"
680 | }
681 | },
682 | "domutils": {
683 | "version": "2.8.0",
684 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
685 | "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
686 | "dev": true,
687 | "requires": {
688 | "dom-serializer": "^1.0.1",
689 | "domelementtype": "^2.2.0",
690 | "domhandler": "^4.2.0"
691 | }
692 | },
693 | "electron-to-chromium": {
694 | "version": "1.4.104",
695 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.104.tgz",
696 | "integrity": "sha512-2kjoAyiG7uMyGRM9mx25s3HAzmQG2ayuYXxsFmYugHSDcwxREgLtscZvbL1JcW9S/OemeQ3f/SG6JhDwpnCclQ==",
697 | "dev": true
698 | },
699 | "emmet": {
700 | "version": "2.3.6",
701 | "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.3.6.tgz",
702 | "integrity": "sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==",
703 | "dev": true,
704 | "requires": {
705 | "@emmetio/abbreviation": "^2.2.3",
706 | "@emmetio/css-abbreviation": "^2.1.4"
707 | }
708 | },
709 | "entities": {
710 | "version": "3.0.1",
711 | "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz",
712 | "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==",
713 | "dev": true
714 | },
715 | "error-ex": {
716 | "version": "1.3.2",
717 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
718 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
719 | "dev": true,
720 | "requires": {
721 | "is-arrayish": "^0.2.1"
722 | }
723 | },
724 | "esbuild": {
725 | "version": "0.14.32",
726 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.32.tgz",
727 | "integrity": "sha512-RuzVUP/bkStmnVHK6Gh3gjaMjfXNLqBqvYVDiS9JKl5KdRdRLUeW5Wo8NrbL7cL6CW7Cyak7SvACqyPOBuA8vA==",
728 | "dev": true,
729 | "requires": {
730 | "esbuild-android-64": "0.14.32",
731 | "esbuild-android-arm64": "0.14.32",
732 | "esbuild-darwin-64": "0.14.32",
733 | "esbuild-darwin-arm64": "0.14.32",
734 | "esbuild-freebsd-64": "0.14.32",
735 | "esbuild-freebsd-arm64": "0.14.32",
736 | "esbuild-linux-32": "0.14.32",
737 | "esbuild-linux-64": "0.14.32",
738 | "esbuild-linux-arm": "0.14.32",
739 | "esbuild-linux-arm64": "0.14.32",
740 | "esbuild-linux-mips64le": "0.14.32",
741 | "esbuild-linux-ppc64le": "0.14.32",
742 | "esbuild-linux-riscv64": "0.14.32",
743 | "esbuild-linux-s390x": "0.14.32",
744 | "esbuild-netbsd-64": "0.14.32",
745 | "esbuild-openbsd-64": "0.14.32",
746 | "esbuild-sunos-64": "0.14.32",
747 | "esbuild-windows-32": "0.14.32",
748 | "esbuild-windows-64": "0.14.32",
749 | "esbuild-windows-arm64": "0.14.32"
750 | }
751 | },
752 | "esbuild-android-64": {
753 | "version": "0.14.32",
754 | "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.32.tgz",
755 | "integrity": "sha512-q1qjB2UcoWehR9Yp9dO2RdJUeLLrXAYsbOU4tkYa+GmJzxTwuvOrMdvaemsXYqb7F4STVTca9KpfqGicEChtUg==",
756 | "dev": true,
757 | "optional": true
758 | },
759 | "esbuild-android-arm64": {
760 | "version": "0.14.32",
761 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.32.tgz",
762 | "integrity": "sha512-bs1uu+RuM15f8yjFc0FhPDE/6NID4fKl7beDVsGCme6Q8ld2IzRXmp5QaHurlcH93PFyQnUgVvdahIWgtK2QZw==",
763 | "dev": true,
764 | "optional": true
765 | },
766 | "esbuild-darwin-64": {
767 | "version": "0.14.32",
768 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.32.tgz",
769 | "integrity": "sha512-6MekflAld28wYtzanwZTxQlxMPeYw/yv1ToFG2hpo3LGxOIE2mBD5IJaMCcyy1//EYvGnGToO3p6XKdbS8E1QQ==",
770 | "dev": true,
771 | "optional": true
772 | },
773 | "esbuild-darwin-arm64": {
774 | "version": "0.14.32",
775 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.32.tgz",
776 | "integrity": "sha512-BHYIjiPDYQTD+4zwqdqRo+I2bbg3fn9mah/gZm4SCCy+7uwTTYOYobIunHT7wVCgxnFCr50PJUdaMrEoCImRbw==",
777 | "dev": true,
778 | "optional": true
779 | },
780 | "esbuild-freebsd-64": {
781 | "version": "0.14.32",
782 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.32.tgz",
783 | "integrity": "sha512-6BOBhtfAf9AlfjL1AvtfVOxwY82tHPfYrA0lskJpFjfiEMGTLU6e0vdOwb4+4x++gGz49azuGK0woYqdfL03uw==",
784 | "dev": true,
785 | "optional": true
786 | },
787 | "esbuild-freebsd-arm64": {
788 | "version": "0.14.32",
789 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.32.tgz",
790 | "integrity": "sha512-zIRR4gKQW56p/xLM8TlpxVBNiX0w3VoR9ZxfH4nrfJ7QiL0SYHRy8YPL5C7zMWRjSze2WxQRHfS9bHKdVrVXBw==",
791 | "dev": true,
792 | "optional": true
793 | },
794 | "esbuild-linux-32": {
795 | "version": "0.14.32",
796 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.32.tgz",
797 | "integrity": "sha512-kn0AkGtPvzA6xiv93/mavvZ7DVinu/ewh2F2S0/8mE8/PXi3D4+svZ6V3beV5DIH7vcHVuGhoooWav8HPF04tg==",
798 | "dev": true,
799 | "optional": true
800 | },
801 | "esbuild-linux-64": {
802 | "version": "0.14.32",
803 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.32.tgz",
804 | "integrity": "sha512-Ie+PMvrPj/HCOmSc0QubKttDxP2iBtPzDu+b+V3HGDGwkGmVpDkyXx1NXp5LjkIphIay2QekMwy1dSw3KDqCew==",
805 | "dev": true,
806 | "optional": true
807 | },
808 | "esbuild-linux-arm": {
809 | "version": "0.14.32",
810 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.32.tgz",
811 | "integrity": "sha512-R/Bvn/YQNDyvfN0SERh/I7hKPqN+nSSruQdVeiYEJ+jc3fUi73jXYAscpTQgIBeER/yXnEsgJGU/UQ9+sscr7A==",
812 | "dev": true,
813 | "optional": true
814 | },
815 | "esbuild-linux-arm64": {
816 | "version": "0.14.32",
817 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.32.tgz",
818 | "integrity": "sha512-ykoqKaxX95nB+lk2K/+qxr0ke+BxkeVi0yKOnymCR5Ive7IZDHa4BJX53NEGSBKLfWPwKE6SXTz8qcEewSntoA==",
819 | "dev": true,
820 | "optional": true
821 | },
822 | "esbuild-linux-mips64le": {
823 | "version": "0.14.32",
824 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.32.tgz",
825 | "integrity": "sha512-IilnlBexpHpt/5po0cle/L/S6CYnwaq23UuAqWzxp+opHLOCNnyANpC1jOoP551aRx4JuZ7z3xZZ7bYQZB147w==",
826 | "dev": true,
827 | "optional": true
828 | },
829 | "esbuild-linux-ppc64le": {
830 | "version": "0.14.32",
831 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.32.tgz",
832 | "integrity": "sha512-TR6l5nWZbfq7jSY+1vsiQjT4m67NWplNhbX6GBieZq6DBt0nTx1XgTZAdKROF7jTuaK7YrCYlPXtfO3w86Mysw==",
833 | "dev": true,
834 | "optional": true
835 | },
836 | "esbuild-linux-riscv64": {
837 | "version": "0.14.32",
838 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.32.tgz",
839 | "integrity": "sha512-aSOcUzTeIAslfri8e+bMpyzQuxhcIiNhWyuCGGXum2PtxwYiUqR8/UCMYfwYtYkhr1yABOFOfs83mm9KBy5qCQ==",
840 | "dev": true,
841 | "optional": true
842 | },
843 | "esbuild-linux-s390x": {
844 | "version": "0.14.32",
845 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.32.tgz",
846 | "integrity": "sha512-dNlip+EvexxKjRZitFCWCd7DVk64c7R5ySr8aFEMHCb/RriNiyDxYJGzYWm4EMJsMRMupMUHlMY64BAa3Op9FA==",
847 | "dev": true,
848 | "optional": true
849 | },
850 | "esbuild-netbsd-64": {
851 | "version": "0.14.32",
852 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.32.tgz",
853 | "integrity": "sha512-Pa3QByYqxzlBFQQQhjYBPg3WUfSjwibqzh1hC6mPDRUHnCeUcrLoBuIiG4xqOYEpQM9/kDowIBsrGIQEVWWdQA==",
854 | "dev": true,
855 | "optional": true
856 | },
857 | "esbuild-openbsd-64": {
858 | "version": "0.14.32",
859 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.32.tgz",
860 | "integrity": "sha512-uWKKqpCjkMY8TCIobFvaSETonQY3OrmgnoTCC3tF+lvMoneYjppB6akx7L5Xv0kP+1tnSbrIof1ca8PfqGUyjw==",
861 | "dev": true,
862 | "optional": true
863 | },
864 | "esbuild-sunos-64": {
865 | "version": "0.14.32",
866 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.32.tgz",
867 | "integrity": "sha512-Ar+u3mBk0oVV4Fwv/qlinJZNIPPtTBSG+1W42o8lOaVxJ+rJgecDoeUN+5uyd9at0BK1SVrQ1qZ4wjHKB0qFpQ==",
868 | "dev": true,
869 | "optional": true
870 | },
871 | "esbuild-windows-32": {
872 | "version": "0.14.32",
873 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.32.tgz",
874 | "integrity": "sha512-rLMsbflMY6Hjh3rmQnCDVZahJQ7n+XfT6o1+no5pHRpDlMh38MHthgGh35q+EcOMgrGP3ppnw70rhJq80SaYTQ==",
875 | "dev": true,
876 | "optional": true
877 | },
878 | "esbuild-windows-64": {
879 | "version": "0.14.32",
880 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.32.tgz",
881 | "integrity": "sha512-OHnMMxYufVgLXIMnwLynLMKguHMrsVnWcehieSP9i6ZX31KEsOFYWrorcnTWOn4rbZVLSL10ofxLuVIgRW3SWw==",
882 | "dev": true,
883 | "optional": true
884 | },
885 | "esbuild-windows-arm64": {
886 | "version": "0.14.32",
887 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.32.tgz",
888 | "integrity": "sha512-ddavy6IPUBySMfqDfG243TgtuqwQBNJQJPVaA4DaavmMfpBsUxFrSV+HzBWXTKU3I9EcuoEvIATLuQ7NJKxjwg==",
889 | "dev": true,
890 | "optional": true
891 | },
892 | "escalade": {
893 | "version": "3.1.1",
894 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
895 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
896 | "dev": true
897 | },
898 | "escape-string-regexp": {
899 | "version": "1.0.5",
900 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
901 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
902 | "dev": true
903 | },
904 | "estree-walker": {
905 | "version": "2.0.2",
906 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
907 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
908 | },
909 | "fast-glob": {
910 | "version": "3.2.11",
911 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz",
912 | "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==",
913 | "dev": true,
914 | "requires": {
915 | "@nodelib/fs.stat": "^2.0.2",
916 | "@nodelib/fs.walk": "^1.2.3",
917 | "glob-parent": "^5.1.2",
918 | "merge2": "^1.3.0",
919 | "micromatch": "^4.0.4"
920 | },
921 | "dependencies": {
922 | "glob-parent": {
923 | "version": "5.1.2",
924 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
925 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
926 | "dev": true,
927 | "requires": {
928 | "is-glob": "^4.0.1"
929 | }
930 | }
931 | }
932 | },
933 | "fastq": {
934 | "version": "1.13.0",
935 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
936 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
937 | "dev": true,
938 | "requires": {
939 | "reusify": "^1.0.4"
940 | }
941 | },
942 | "fill-range": {
943 | "version": "7.0.1",
944 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
945 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
946 | "dev": true,
947 | "requires": {
948 | "to-regex-range": "^5.0.1"
949 | }
950 | },
951 | "fraction.js": {
952 | "version": "4.2.0",
953 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
954 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
955 | "dev": true
956 | },
957 | "fsevents": {
958 | "version": "2.3.2",
959 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
960 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
961 | "dev": true,
962 | "optional": true
963 | },
964 | "function-bind": {
965 | "version": "1.1.1",
966 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
967 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
968 | "dev": true
969 | },
970 | "get-intrinsic": {
971 | "version": "1.1.1",
972 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
973 | "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
974 | "dev": true,
975 | "requires": {
976 | "function-bind": "^1.1.1",
977 | "has": "^1.0.3",
978 | "has-symbols": "^1.0.1"
979 | }
980 | },
981 | "glob-parent": {
982 | "version": "6.0.2",
983 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
984 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
985 | "dev": true,
986 | "requires": {
987 | "is-glob": "^4.0.3"
988 | }
989 | },
990 | "has": {
991 | "version": "1.0.3",
992 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
993 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
994 | "dev": true,
995 | "requires": {
996 | "function-bind": "^1.1.1"
997 | }
998 | },
999 | "has-flag": {
1000 | "version": "4.0.0",
1001 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1002 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1003 | "dev": true
1004 | },
1005 | "has-symbols": {
1006 | "version": "1.0.3",
1007 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
1008 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
1009 | "dev": true
1010 | },
1011 | "has-tostringtag": {
1012 | "version": "1.0.0",
1013 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
1014 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
1015 | "dev": true,
1016 | "requires": {
1017 | "has-symbols": "^1.0.2"
1018 | }
1019 | },
1020 | "htmlparser2": {
1021 | "version": "7.2.0",
1022 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz",
1023 | "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==",
1024 | "dev": true,
1025 | "requires": {
1026 | "domelementtype": "^2.0.1",
1027 | "domhandler": "^4.2.2",
1028 | "domutils": "^2.8.0",
1029 | "entities": "^3.0.1"
1030 | }
1031 | },
1032 | "import-fresh": {
1033 | "version": "3.3.0",
1034 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1035 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1036 | "dev": true,
1037 | "requires": {
1038 | "parent-module": "^1.0.0",
1039 | "resolve-from": "^4.0.0"
1040 | }
1041 | },
1042 | "is-arrayish": {
1043 | "version": "0.2.1",
1044 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
1045 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
1046 | "dev": true
1047 | },
1048 | "is-binary-path": {
1049 | "version": "2.1.0",
1050 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1051 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1052 | "dev": true,
1053 | "requires": {
1054 | "binary-extensions": "^2.0.0"
1055 | }
1056 | },
1057 | "is-core-module": {
1058 | "version": "2.8.1",
1059 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz",
1060 | "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==",
1061 | "dev": true,
1062 | "requires": {
1063 | "has": "^1.0.3"
1064 | }
1065 | },
1066 | "is-expression": {
1067 | "version": "4.0.0",
1068 | "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz",
1069 | "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==",
1070 | "dev": true,
1071 | "requires": {
1072 | "acorn": "^7.1.1",
1073 | "object-assign": "^4.1.1"
1074 | }
1075 | },
1076 | "is-extglob": {
1077 | "version": "2.1.1",
1078 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1079 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
1080 | "dev": true
1081 | },
1082 | "is-glob": {
1083 | "version": "4.0.3",
1084 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1085 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1086 | "dev": true,
1087 | "requires": {
1088 | "is-extglob": "^2.1.1"
1089 | }
1090 | },
1091 | "is-number": {
1092 | "version": "7.0.0",
1093 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1094 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1095 | "dev": true
1096 | },
1097 | "is-promise": {
1098 | "version": "2.2.2",
1099 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
1100 | "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==",
1101 | "dev": true
1102 | },
1103 | "is-regex": {
1104 | "version": "1.1.4",
1105 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
1106 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
1107 | "dev": true,
1108 | "requires": {
1109 | "call-bind": "^1.0.2",
1110 | "has-tostringtag": "^1.0.0"
1111 | }
1112 | },
1113 | "js-stringify": {
1114 | "version": "1.0.2",
1115 | "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
1116 | "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=",
1117 | "dev": true
1118 | },
1119 | "js-tokens": {
1120 | "version": "4.0.0",
1121 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1122 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1123 | "dev": true
1124 | },
1125 | "json-parse-even-better-errors": {
1126 | "version": "2.3.1",
1127 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
1128 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
1129 | "dev": true
1130 | },
1131 | "jsonc-parser": {
1132 | "version": "2.3.1",
1133 | "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz",
1134 | "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==",
1135 | "dev": true
1136 | },
1137 | "jstransformer": {
1138 | "version": "1.0.0",
1139 | "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz",
1140 | "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=",
1141 | "dev": true,
1142 | "requires": {
1143 | "is-promise": "^2.0.0",
1144 | "promise": "^7.0.1"
1145 | }
1146 | },
1147 | "lilconfig": {
1148 | "version": "2.0.5",
1149 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz",
1150 | "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==",
1151 | "dev": true
1152 | },
1153 | "lines-and-columns": {
1154 | "version": "1.2.4",
1155 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
1156 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
1157 | "dev": true
1158 | },
1159 | "lru-cache": {
1160 | "version": "6.0.0",
1161 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
1162 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
1163 | "dev": true,
1164 | "requires": {
1165 | "yallist": "^4.0.0"
1166 | }
1167 | },
1168 | "magic-string": {
1169 | "version": "0.25.9",
1170 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
1171 | "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==",
1172 | "requires": {
1173 | "sourcemap-codec": "^1.4.8"
1174 | }
1175 | },
1176 | "merge2": {
1177 | "version": "1.4.1",
1178 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
1179 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
1180 | "dev": true
1181 | },
1182 | "micromatch": {
1183 | "version": "4.0.5",
1184 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
1185 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
1186 | "dev": true,
1187 | "requires": {
1188 | "braces": "^3.0.2",
1189 | "picomatch": "^2.3.1"
1190 | }
1191 | },
1192 | "mini-svg-data-uri": {
1193 | "version": "1.4.4",
1194 | "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
1195 | "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg=="
1196 | },
1197 | "minimist": {
1198 | "version": "1.2.6",
1199 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
1200 | "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
1201 | "dev": true
1202 | },
1203 | "nanoid": {
1204 | "version": "3.3.2",
1205 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.2.tgz",
1206 | "integrity": "sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA=="
1207 | },
1208 | "node-releases": {
1209 | "version": "2.0.2",
1210 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz",
1211 | "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==",
1212 | "dev": true
1213 | },
1214 | "normalize-path": {
1215 | "version": "3.0.0",
1216 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1217 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1218 | "dev": true
1219 | },
1220 | "normalize-range": {
1221 | "version": "0.1.2",
1222 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
1223 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
1224 | "dev": true
1225 | },
1226 | "object-assign": {
1227 | "version": "4.1.1",
1228 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1229 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
1230 | "dev": true
1231 | },
1232 | "object-hash": {
1233 | "version": "2.2.0",
1234 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz",
1235 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==",
1236 | "dev": true
1237 | },
1238 | "parent-module": {
1239 | "version": "1.0.1",
1240 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
1241 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
1242 | "dev": true,
1243 | "requires": {
1244 | "callsites": "^3.0.0"
1245 | }
1246 | },
1247 | "parse-json": {
1248 | "version": "5.2.0",
1249 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
1250 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
1251 | "dev": true,
1252 | "requires": {
1253 | "@babel/code-frame": "^7.0.0",
1254 | "error-ex": "^1.3.1",
1255 | "json-parse-even-better-errors": "^2.3.0",
1256 | "lines-and-columns": "^1.1.6"
1257 | }
1258 | },
1259 | "path-parse": {
1260 | "version": "1.0.7",
1261 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
1262 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
1263 | "dev": true
1264 | },
1265 | "path-type": {
1266 | "version": "4.0.0",
1267 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
1268 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
1269 | "dev": true
1270 | },
1271 | "picocolors": {
1272 | "version": "1.0.0",
1273 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
1274 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
1275 | },
1276 | "picomatch": {
1277 | "version": "2.3.1",
1278 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1279 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1280 | "dev": true
1281 | },
1282 | "postcss": {
1283 | "version": "8.4.12",
1284 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz",
1285 | "integrity": "sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==",
1286 | "requires": {
1287 | "nanoid": "^3.3.1",
1288 | "picocolors": "^1.0.0",
1289 | "source-map-js": "^1.0.2"
1290 | }
1291 | },
1292 | "postcss-js": {
1293 | "version": "4.0.0",
1294 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz",
1295 | "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==",
1296 | "dev": true,
1297 | "requires": {
1298 | "camelcase-css": "^2.0.1"
1299 | }
1300 | },
1301 | "postcss-load-config": {
1302 | "version": "3.1.4",
1303 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz",
1304 | "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==",
1305 | "dev": true,
1306 | "requires": {
1307 | "lilconfig": "^2.0.5",
1308 | "yaml": "^1.10.2"
1309 | }
1310 | },
1311 | "postcss-nested": {
1312 | "version": "5.0.6",
1313 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz",
1314 | "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==",
1315 | "dev": true,
1316 | "requires": {
1317 | "postcss-selector-parser": "^6.0.6"
1318 | }
1319 | },
1320 | "postcss-selector-parser": {
1321 | "version": "6.0.10",
1322 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
1323 | "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
1324 | "dev": true,
1325 | "requires": {
1326 | "cssesc": "^3.0.0",
1327 | "util-deprecate": "^1.0.2"
1328 | }
1329 | },
1330 | "postcss-value-parser": {
1331 | "version": "4.2.0",
1332 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
1333 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
1334 | "dev": true
1335 | },
1336 | "promise": {
1337 | "version": "7.3.1",
1338 | "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
1339 | "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
1340 | "dev": true,
1341 | "requires": {
1342 | "asap": "~2.0.3"
1343 | }
1344 | },
1345 | "pug": {
1346 | "version": "3.0.2",
1347 | "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz",
1348 | "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==",
1349 | "dev": true,
1350 | "requires": {
1351 | "pug-code-gen": "^3.0.2",
1352 | "pug-filters": "^4.0.0",
1353 | "pug-lexer": "^5.0.1",
1354 | "pug-linker": "^4.0.0",
1355 | "pug-load": "^3.0.0",
1356 | "pug-parser": "^6.0.0",
1357 | "pug-runtime": "^3.0.1",
1358 | "pug-strip-comments": "^2.0.0"
1359 | }
1360 | },
1361 | "pug-attrs": {
1362 | "version": "3.0.0",
1363 | "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz",
1364 | "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==",
1365 | "dev": true,
1366 | "requires": {
1367 | "constantinople": "^4.0.1",
1368 | "js-stringify": "^1.0.2",
1369 | "pug-runtime": "^3.0.0"
1370 | }
1371 | },
1372 | "pug-code-gen": {
1373 | "version": "3.0.2",
1374 | "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz",
1375 | "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==",
1376 | "dev": true,
1377 | "requires": {
1378 | "constantinople": "^4.0.1",
1379 | "doctypes": "^1.1.0",
1380 | "js-stringify": "^1.0.2",
1381 | "pug-attrs": "^3.0.0",
1382 | "pug-error": "^2.0.0",
1383 | "pug-runtime": "^3.0.0",
1384 | "void-elements": "^3.1.0",
1385 | "with": "^7.0.0"
1386 | }
1387 | },
1388 | "pug-error": {
1389 | "version": "2.0.0",
1390 | "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz",
1391 | "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==",
1392 | "dev": true
1393 | },
1394 | "pug-filters": {
1395 | "version": "4.0.0",
1396 | "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz",
1397 | "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==",
1398 | "dev": true,
1399 | "requires": {
1400 | "constantinople": "^4.0.1",
1401 | "jstransformer": "1.0.0",
1402 | "pug-error": "^2.0.0",
1403 | "pug-walk": "^2.0.0",
1404 | "resolve": "^1.15.1"
1405 | }
1406 | },
1407 | "pug-lexer": {
1408 | "version": "5.0.1",
1409 | "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz",
1410 | "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==",
1411 | "dev": true,
1412 | "requires": {
1413 | "character-parser": "^2.2.0",
1414 | "is-expression": "^4.0.0",
1415 | "pug-error": "^2.0.0"
1416 | }
1417 | },
1418 | "pug-linker": {
1419 | "version": "4.0.0",
1420 | "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz",
1421 | "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==",
1422 | "dev": true,
1423 | "requires": {
1424 | "pug-error": "^2.0.0",
1425 | "pug-walk": "^2.0.0"
1426 | }
1427 | },
1428 | "pug-load": {
1429 | "version": "3.0.0",
1430 | "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz",
1431 | "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==",
1432 | "dev": true,
1433 | "requires": {
1434 | "object-assign": "^4.1.1",
1435 | "pug-walk": "^2.0.0"
1436 | }
1437 | },
1438 | "pug-parser": {
1439 | "version": "6.0.0",
1440 | "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz",
1441 | "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==",
1442 | "dev": true,
1443 | "requires": {
1444 | "pug-error": "^2.0.0",
1445 | "token-stream": "1.0.0"
1446 | }
1447 | },
1448 | "pug-runtime": {
1449 | "version": "3.0.1",
1450 | "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz",
1451 | "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==",
1452 | "dev": true
1453 | },
1454 | "pug-strip-comments": {
1455 | "version": "2.0.0",
1456 | "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz",
1457 | "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==",
1458 | "dev": true,
1459 | "requires": {
1460 | "pug-error": "^2.0.0"
1461 | }
1462 | },
1463 | "pug-walk": {
1464 | "version": "2.0.0",
1465 | "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz",
1466 | "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==",
1467 | "dev": true
1468 | },
1469 | "queue-microtask": {
1470 | "version": "1.2.3",
1471 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
1472 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
1473 | "dev": true
1474 | },
1475 | "quick-lru": {
1476 | "version": "5.1.1",
1477 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
1478 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
1479 | "dev": true
1480 | },
1481 | "readdirp": {
1482 | "version": "3.6.0",
1483 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1484 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1485 | "dev": true,
1486 | "requires": {
1487 | "picomatch": "^2.2.1"
1488 | }
1489 | },
1490 | "request-light": {
1491 | "version": "0.5.7",
1492 | "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.5.7.tgz",
1493 | "integrity": "sha512-i/wKzvcx7Er8tZnvqSxWuNO5ZGggu2UgZAqj/RyZ0si7lBTXL7kZiI/dWxzxnQjaY7s5HEy1qK21Do4Ncr6cVw==",
1494 | "dev": true
1495 | },
1496 | "resolve": {
1497 | "version": "1.22.0",
1498 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz",
1499 | "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==",
1500 | "dev": true,
1501 | "requires": {
1502 | "is-core-module": "^2.8.1",
1503 | "path-parse": "^1.0.7",
1504 | "supports-preserve-symlinks-flag": "^1.0.0"
1505 | }
1506 | },
1507 | "resolve-from": {
1508 | "version": "4.0.0",
1509 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
1510 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
1511 | "dev": true
1512 | },
1513 | "reusify": {
1514 | "version": "1.0.4",
1515 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
1516 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
1517 | "dev": true
1518 | },
1519 | "rollup": {
1520 | "version": "2.70.1",
1521 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.70.1.tgz",
1522 | "integrity": "sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA==",
1523 | "dev": true,
1524 | "requires": {
1525 | "fsevents": "~2.3.2"
1526 | }
1527 | },
1528 | "run-parallel": {
1529 | "version": "1.2.0",
1530 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
1531 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
1532 | "dev": true,
1533 | "requires": {
1534 | "queue-microtask": "^1.2.2"
1535 | }
1536 | },
1537 | "semver": {
1538 | "version": "7.3.5",
1539 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
1540 | "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
1541 | "dev": true,
1542 | "requires": {
1543 | "lru-cache": "^6.0.0"
1544 | }
1545 | },
1546 | "source-map": {
1547 | "version": "0.6.1",
1548 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
1549 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
1550 | },
1551 | "source-map-js": {
1552 | "version": "1.0.2",
1553 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
1554 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
1555 | },
1556 | "sourcemap-codec": {
1557 | "version": "1.4.8",
1558 | "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
1559 | "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
1560 | },
1561 | "supports-color": {
1562 | "version": "7.2.0",
1563 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1564 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1565 | "dev": true,
1566 | "requires": {
1567 | "has-flag": "^4.0.0"
1568 | }
1569 | },
1570 | "supports-preserve-symlinks-flag": {
1571 | "version": "1.0.0",
1572 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
1573 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
1574 | "dev": true
1575 | },
1576 | "tailwindcss": {
1577 | "version": "3.0.23",
1578 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.23.tgz",
1579 | "integrity": "sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==",
1580 | "dev": true,
1581 | "requires": {
1582 | "arg": "^5.0.1",
1583 | "chalk": "^4.1.2",
1584 | "chokidar": "^3.5.3",
1585 | "color-name": "^1.1.4",
1586 | "cosmiconfig": "^7.0.1",
1587 | "detective": "^5.2.0",
1588 | "didyoumean": "^1.2.2",
1589 | "dlv": "^1.1.3",
1590 | "fast-glob": "^3.2.11",
1591 | "glob-parent": "^6.0.2",
1592 | "is-glob": "^4.0.3",
1593 | "normalize-path": "^3.0.0",
1594 | "object-hash": "^2.2.0",
1595 | "postcss": "^8.4.6",
1596 | "postcss-js": "^4.0.0",
1597 | "postcss-load-config": "^3.1.0",
1598 | "postcss-nested": "5.0.6",
1599 | "postcss-selector-parser": "^6.0.9",
1600 | "postcss-value-parser": "^4.2.0",
1601 | "quick-lru": "^5.1.1",
1602 | "resolve": "^1.22.0"
1603 | }
1604 | },
1605 | "to-fast-properties": {
1606 | "version": "2.0.0",
1607 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
1608 | "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
1609 | "dev": true
1610 | },
1611 | "to-regex-range": {
1612 | "version": "5.0.1",
1613 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1614 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1615 | "dev": true,
1616 | "requires": {
1617 | "is-number": "^7.0.0"
1618 | }
1619 | },
1620 | "token-stream": {
1621 | "version": "1.0.0",
1622 | "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz",
1623 | "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=",
1624 | "dev": true
1625 | },
1626 | "typescript": {
1627 | "version": "4.6.3",
1628 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz",
1629 | "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==",
1630 | "dev": true
1631 | },
1632 | "upath": {
1633 | "version": "2.0.1",
1634 | "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz",
1635 | "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==",
1636 | "dev": true
1637 | },
1638 | "util-deprecate": {
1639 | "version": "1.0.2",
1640 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1641 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
1642 | "dev": true
1643 | },
1644 | "vite": {
1645 | "version": "2.9.1",
1646 | "resolved": "https://registry.npmjs.org/vite/-/vite-2.9.1.tgz",
1647 | "integrity": "sha512-vSlsSdOYGcYEJfkQ/NeLXgnRv5zZfpAsdztkIrs7AZHV8RCMZQkwjo4DS5BnrYTqoWqLoUe1Cah4aVO4oNNqCQ==",
1648 | "dev": true,
1649 | "requires": {
1650 | "esbuild": "^0.14.27",
1651 | "fsevents": "~2.3.2",
1652 | "postcss": "^8.4.12",
1653 | "resolve": "^1.22.0",
1654 | "rollup": "^2.59.0"
1655 | }
1656 | },
1657 | "void-elements": {
1658 | "version": "3.1.0",
1659 | "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
1660 | "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=",
1661 | "dev": true
1662 | },
1663 | "vscode-css-languageservice": {
1664 | "version": "5.4.1",
1665 | "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.1.tgz",
1666 | "integrity": "sha512-W7D3GKFXf97ReAaU4EZ2nxVO1kQhztbycJgc1b/Ipr0h8zYWr88BADmrXu02z+lsCS84D7Sr4hoUzDKeaFn2Kg==",
1667 | "dev": true,
1668 | "requires": {
1669 | "vscode-languageserver-textdocument": "^1.0.4",
1670 | "vscode-languageserver-types": "^3.16.0",
1671 | "vscode-nls": "^5.0.0",
1672 | "vscode-uri": "^3.0.3"
1673 | },
1674 | "dependencies": {
1675 | "vscode-languageserver-types": {
1676 | "version": "3.16.0",
1677 | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz",
1678 | "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==",
1679 | "dev": true
1680 | }
1681 | }
1682 | },
1683 | "vscode-html-languageservice": {
1684 | "version": "4.2.4",
1685 | "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.2.4.tgz",
1686 | "integrity": "sha512-1HqvXKOq9WlZyW4HTD+0XzrjZoZ/YFrgQY2PZqktbRloHXVAUKm6+cAcvZi4YqKPVn05/CK7do+KBHfuSaEdbg==",
1687 | "dev": true,
1688 | "requires": {
1689 | "vscode-languageserver-textdocument": "^1.0.4",
1690 | "vscode-languageserver-types": "^3.16.0",
1691 | "vscode-nls": "^5.0.0",
1692 | "vscode-uri": "^3.0.3"
1693 | },
1694 | "dependencies": {
1695 | "vscode-languageserver-types": {
1696 | "version": "3.16.0",
1697 | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz",
1698 | "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==",
1699 | "dev": true
1700 | }
1701 | }
1702 | },
1703 | "vscode-json-languageservice": {
1704 | "version": "4.2.1",
1705 | "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz",
1706 | "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==",
1707 | "dev": true,
1708 | "requires": {
1709 | "jsonc-parser": "^3.0.0",
1710 | "vscode-languageserver-textdocument": "^1.0.3",
1711 | "vscode-languageserver-types": "^3.16.0",
1712 | "vscode-nls": "^5.0.0",
1713 | "vscode-uri": "^3.0.3"
1714 | },
1715 | "dependencies": {
1716 | "jsonc-parser": {
1717 | "version": "3.0.0",
1718 | "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz",
1719 | "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==",
1720 | "dev": true
1721 | },
1722 | "vscode-languageserver-types": {
1723 | "version": "3.16.0",
1724 | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz",
1725 | "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==",
1726 | "dev": true
1727 | }
1728 | }
1729 | },
1730 | "vscode-jsonrpc": {
1731 | "version": "8.0.0-next.7",
1732 | "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.7.tgz",
1733 | "integrity": "sha512-JX/F31LEsims0dAlOTKFE4E+AJMiJvdRSRViifFJSqSN7EzeYyWlfuDchF7g91oRNPZOIWfibTkDf3/UMsQGzQ==",
1734 | "dev": true
1735 | },
1736 | "vscode-languageserver": {
1737 | "version": "8.0.0-next.10",
1738 | "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.10.tgz",
1739 | "integrity": "sha512-sdjldl9ipuBSWVw5ENVMRcOVQwF0o+J6+lNA7FrB8MiLmzflnfjRoJMqA5tCEY8S/J/+P56ZR/dqiQnRYg5m8w==",
1740 | "dev": true,
1741 | "requires": {
1742 | "vscode-languageserver-protocol": "3.17.0-next.16"
1743 | }
1744 | },
1745 | "vscode-languageserver-protocol": {
1746 | "version": "3.17.0-next.16",
1747 | "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.16.tgz",
1748 | "integrity": "sha512-tx4DnXw9u3N7vw+bx6n2NKp6FoxoNwiP/biH83AS30I2AnTGyLd7afSeH6Oewn2E8jvB7K15bs12sMppkKOVeQ==",
1749 | "dev": true,
1750 | "requires": {
1751 | "vscode-jsonrpc": "8.0.0-next.7",
1752 | "vscode-languageserver-types": "3.17.0-next.9"
1753 | }
1754 | },
1755 | "vscode-languageserver-textdocument": {
1756 | "version": "1.0.4",
1757 | "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.4.tgz",
1758 | "integrity": "sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==",
1759 | "dev": true
1760 | },
1761 | "vscode-languageserver-types": {
1762 | "version": "3.17.0-next.9",
1763 | "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.9.tgz",
1764 | "integrity": "sha512-9/PeDNPYduaoXRUzYpqmu4ZV9L01HGo0wH9FUt+sSHR7IXwA7xoXBfNUlv8gB9H0D2WwEmMomSy1NmhjKQyn3A==",
1765 | "dev": true
1766 | },
1767 | "vscode-nls": {
1768 | "version": "5.0.0",
1769 | "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz",
1770 | "integrity": "sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==",
1771 | "dev": true
1772 | },
1773 | "vscode-pug-languageservice": {
1774 | "version": "0.29.8",
1775 | "resolved": "https://registry.npmjs.org/vscode-pug-languageservice/-/vscode-pug-languageservice-0.29.8.tgz",
1776 | "integrity": "sha512-QHYAzDSJLg7GOLxCZ12qsM0dAM0dPeMSS1t4kKfzLsfpErmZpFzkAIXbidVrNMdMffGZMtTuIlcpEyWHbx96Iw==",
1777 | "dev": true,
1778 | "requires": {
1779 | "@volar/code-gen": "0.29.8",
1780 | "@volar/shared": "0.29.8",
1781 | "@volar/source-map": "0.29.8",
1782 | "@volar/transforms": "0.29.8",
1783 | "pug-lexer": "^5.0.1",
1784 | "pug-parser": "^6.0.0",
1785 | "vscode-languageserver": "^8.0.0-next.2"
1786 | }
1787 | },
1788 | "vscode-typescript-languageservice": {
1789 | "version": "0.29.8",
1790 | "resolved": "https://registry.npmjs.org/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.29.8.tgz",
1791 | "integrity": "sha512-eecDqHk4WjEvy6VHQ6teHczppQ9yJO2wExCy7yu7WiFj35qbw0h4G6Erv46MvP3ClL8FggFzD7s1qM6vdqJUfw==",
1792 | "dev": true,
1793 | "requires": {
1794 | "@volar/shared": "0.29.8",
1795 | "semver": "^7.3.5",
1796 | "upath": "^2.0.1",
1797 | "vscode-languageserver": "^8.0.0-next.2",
1798 | "vscode-languageserver-textdocument": "^1.0.1"
1799 | }
1800 | },
1801 | "vscode-uri": {
1802 | "version": "3.0.3",
1803 | "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz",
1804 | "integrity": "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==",
1805 | "dev": true
1806 | },
1807 | "vscode-vue-languageservice": {
1808 | "version": "0.29.8",
1809 | "resolved": "https://registry.npmjs.org/vscode-vue-languageservice/-/vscode-vue-languageservice-0.29.8.tgz",
1810 | "integrity": "sha512-qSJdvW5ttyGUB/8uWDKgo8vnIoFnXYlBP4Z/cn54btsRn6ZMw7IJGJU1381e7p/yGvMTLeGbugD53SghbnSa6g==",
1811 | "dev": true,
1812 | "requires": {
1813 | "@volar/code-gen": "0.29.8",
1814 | "@volar/html2pug": "0.29.8",
1815 | "@volar/shared": "0.29.8",
1816 | "@volar/source-map": "0.29.8",
1817 | "@volar/transforms": "0.29.8",
1818 | "@volar/vue-code-gen": "0.29.8",
1819 | "@vscode/emmet-helper": "^2.8.0",
1820 | "@vue/reactivity": "^3.2.21",
1821 | "@vue/shared": "^3.2.21",
1822 | "request-light": "^0.5.4",
1823 | "upath": "^2.0.1",
1824 | "vscode-css-languageservice": "^5.1.7",
1825 | "vscode-html-languageservice": "^4.1.0",
1826 | "vscode-json-languageservice": "^4.1.8",
1827 | "vscode-languageserver": "^8.0.0-next.2",
1828 | "vscode-languageserver-textdocument": "^1.0.1",
1829 | "vscode-pug-languageservice": "0.29.8",
1830 | "vscode-typescript-languageservice": "0.29.8"
1831 | }
1832 | },
1833 | "vue": {
1834 | "version": "3.2.31",
1835 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.31.tgz",
1836 | "integrity": "sha512-odT3W2tcffTiQCy57nOT93INw1auq5lYLLYtWpPYQQYQOOdHiqFct9Xhna6GJ+pJQaF67yZABraH47oywkJgFw==",
1837 | "requires": {
1838 | "@vue/compiler-dom": "3.2.31",
1839 | "@vue/compiler-sfc": "3.2.31",
1840 | "@vue/runtime-dom": "3.2.31",
1841 | "@vue/server-renderer": "3.2.31",
1842 | "@vue/shared": "3.2.31"
1843 | }
1844 | },
1845 | "vue-router": {
1846 | "version": "4.0.14",
1847 | "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.0.14.tgz",
1848 | "integrity": "sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw==",
1849 | "requires": {
1850 | "@vue/devtools-api": "^6.0.0"
1851 | }
1852 | },
1853 | "vue-tsc": {
1854 | "version": "0.29.8",
1855 | "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-0.29.8.tgz",
1856 | "integrity": "sha512-pT0wLRjvRuSmB+J4WJT6uuV9mO0KtSSXEAtaVXZQzyk5+DJdbLIQTbRce/TXSkfqt1l1WogO78RjtOJFiMCgfQ==",
1857 | "dev": true,
1858 | "requires": {
1859 | "@volar/shared": "0.29.8",
1860 | "vscode-vue-languageservice": "0.29.8"
1861 | }
1862 | },
1863 | "with": {
1864 | "version": "7.0.2",
1865 | "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz",
1866 | "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==",
1867 | "dev": true,
1868 | "requires": {
1869 | "@babel/parser": "^7.9.6",
1870 | "@babel/types": "^7.9.6",
1871 | "assert-never": "^1.2.1",
1872 | "babel-walk": "3.0.0-canary-5"
1873 | }
1874 | },
1875 | "xtend": {
1876 | "version": "4.0.2",
1877 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
1878 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
1879 | "dev": true
1880 | },
1881 | "yallist": {
1882 | "version": "4.0.0",
1883 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
1884 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
1885 | "dev": true
1886 | },
1887 | "yaml": {
1888 | "version": "1.10.2",
1889 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
1890 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
1891 | "dev": true
1892 | }
1893 | }
1894 | }
1895 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "redditle",
3 | "private": true,
4 | "version": "0.0.0",
5 | "scripts": {
6 | "dev": "vite",
7 | "build": "vue-tsc --noEmit && vite build",
8 | "preview": "vite preview"
9 | },
10 | "dependencies": {
11 | "@headlessui/vue": "^1.5.0",
12 | "@heroicons/vue": "^1.0.6",
13 | "@tailwindcss/forms": "^0.5.0",
14 | "vue": "^3.2.25",
15 | "vue-router": "^4.0.14"
16 | },
17 | "devDependencies": {
18 | "@vitejs/plugin-vue": "^2.3.0",
19 | "autoprefixer": "^10.4.4",
20 | "postcss": "^8.4.12",
21 | "tailwindcss": "^3.0.23",
22 | "typescript": "^4.5.4",
23 | "vite": "^2.9.0",
24 | "vue-tsc": "^0.29.8"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/android-chrome-192x192.png
--------------------------------------------------------------------------------
/public/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/android-chrome-512x512.png
--------------------------------------------------------------------------------
/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/public/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/favicon-16x16.png
--------------------------------------------------------------------------------
/public/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/favicon-32x32.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/favicon.ico
--------------------------------------------------------------------------------
/public/opensearch.xml:
--------------------------------------------------------------------------------
1 |
3 | Redditle Search
4 | Reddit-only Google Search. For those of us who add 'reddit' to every Google search
5 | UTF-8
6 | https://redditle.com/favicon.ico
7 | \
8 | https://redditle.com
9 |
10 |
--------------------------------------------------------------------------------
/public/redditle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/greentfrapp/redditle/47ff760fe1288d588f25dd027662ed35f977b203/public/redditle.png
--------------------------------------------------------------------------------
/public/site.webmanifest:
--------------------------------------------------------------------------------
1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
--------------------------------------------------------------------------------
/src/components/Main.vue:
--------------------------------------------------------------------------------
1 |
2 |