helix-twcss 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1230 @@
1
+ @parcel/watcher@2.0.3
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2017-present Devon Govett
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
24
+
25
+ ================================================================================
26
+
27
+ @tailwindcss/aspect-ratio@0.4.2
28
+
29
+ # @tailwindcss/aspect-ratio
30
+
31
+ A plugin that provides a composable API for giving elements a fixed aspect ratio.
32
+
33
+
34
+ ## Installation
35
+
36
+ Install the plugin from npm:
37
+
38
+ ```sh
39
+ npm install -D @tailwindcss/aspect-ratio
40
+ ```
41
+
42
+ Then add the plugin to your `tailwind.config.js` file, and disable the `aspectRatio` core plugin to avoid conflicts with the native `aspect-ratio` utilities included in Tailwind CSS v3.0:
43
+
44
+ ```js
45
+ // tailwind.config.js
46
+ module.exports = {
47
+ theme: {
48
+ // ...
49
+ },
50
+ corePlugins: {
51
+ aspectRatio: false,
52
+ },
53
+ plugins: [
54
+ require('@tailwindcss/aspect-ratio'),
55
+ // ...
56
+ ],
57
+ }
58
+ ```
59
+
60
+ ## Usage
61
+
62
+ Combine the `aspect-w-{n}` and `aspect-h-{n}` classes to specify the aspect ratio for an element:
63
+
64
+ ```html
65
+ <div class="aspect-w-16 aspect-h-9">
66
+ <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
67
+ </div>
68
+ ```
69
+
70
+ Use `aspect-none` to remove any aspect ratio behavior:
71
+
72
+ ```html
73
+ <div class="aspect-w-16 aspect-h-9 lg:aspect-none">
74
+ <!-- ... -->
75
+ </div>
76
+ ```
77
+
78
+ When removing aspect ratio behavior, if nested elements have `w-{n}` or `h-{n}` classes, ensure they are re-declared with a matching breakpoint prefix:
79
+
80
+ ```html
81
+ <div class="aspect-w-16 aspect-h-9 lg:aspect-none">
82
+ <img src="..." alt="..." class="w-full h-full object-center object-cover lg:w-full lg:h-full" />
83
+ </div>
84
+ ```
85
+
86
+ Note that due to the way this currently needs to be implemented ([the old padding-bottom trick](https://css-tricks.com/aspect-ratio-boxes/)) you need to assign the aspect ratio to a _parent_ element, and make the actual element you are trying to size the only child of that parent.
87
+
88
+ Once the [`aspect-ratio` property](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio) is supported in modern browsers, we'll add official support to Tailwind CSS itself and deprecate this plugin.
89
+
90
+ Aspect ratio classes up to 16 are generated by default:
91
+
92
+ | Width | Height |
93
+ | --- | --- |
94
+ | `aspect-w-1` | `aspect-h-1` |
95
+ | `aspect-w-2` | `aspect-h-2` |
96
+ | `aspect-w-3` | `aspect-h-3` |
97
+ | `aspect-w-4` | `aspect-h-4` |
98
+ | `aspect-w-5` | `aspect-h-5` |
99
+ | `aspect-w-6` | `aspect-h-6` |
100
+ | `aspect-w-7` | `aspect-h-7` |
101
+ | `aspect-w-8` | `aspect-h-8` |
102
+ | `aspect-w-9` | `aspect-h-9` |
103
+ | `aspect-w-10` | `aspect-h-10` |
104
+ | `aspect-w-11` | `aspect-h-11` |
105
+ | `aspect-w-12` | `aspect-h-12` |
106
+ | `aspect-w-13` | `aspect-h-13` |
107
+ | `aspect-w-14` | `aspect-h-14` |
108
+ | `aspect-w-15` | `aspect-h-15` |
109
+ | `aspect-w-16` | `aspect-h-16` |
110
+
111
+ ## Configuration
112
+
113
+ You can configure which values and variants are generated by this plugin under the `aspectRatio` key in your `tailwind.config.js` file:
114
+
115
+ ```js
116
+ // tailwind.config.js
117
+ module.exports = {
118
+ theme: {
119
+ aspectRatio: {
120
+ 1: '1',
121
+ 2: '2',
122
+ 3: '3',
123
+ 4: '4',
124
+ }
125
+ },
126
+ variants: {
127
+ aspectRatio: ['responsive', 'hover']
128
+ }
129
+ }
130
+ ```
131
+
132
+ ## Compatibility with default aspect-ratio utilities
133
+
134
+ Tailwind CSS v3.0 shipped with [native aspect-ratio](https://tailwindcss.com/docs/aspect-ratio) support, and while these new utilities are great, the `aspect-ratio` property isn't supported in Safari 14, which still has [significant global usage](https://caniuse.com/mdn-css_properties_aspect-ratio). If you need to support Safari 14, this plugin is still the best way to do that.
135
+
136
+ While it's technically possible to use the new native `aspect-ratio` utilities as well as this plugin in the same project, it doesn't really make a lot of sense to do so. If you're able to use the new native aspect-ratio utilities, just use them instead of this plugin, as they are a lot simpler and work much better.
137
+
138
+ However, if you do want to use both approaches in your project, maybe as a way of transitioning slowly from the plugin approach to the new native utilities, you'll need to add the following values to your `tailwind.config.js` file:
139
+
140
+ ```js
141
+ module.exports = {
142
+ // ...
143
+ theme: {
144
+ aspectRatio: {
145
+ auto: 'auto',
146
+ square: '1 / 1',
147
+ video: '16 / 9',
148
+ 1: '1',
149
+ 2: '2',
150
+ 3: '3',
151
+ 4: '4',
152
+ 5: '5',
153
+ 6: '6',
154
+ 7: '7',
155
+ 8: '8',
156
+ 9: '9',
157
+ 10: '10',
158
+ 11: '11',
159
+ 12: '12',
160
+ 13: '13',
161
+ 14: '14',
162
+ 15: '15',
163
+ 16: '16',
164
+ },
165
+ },
166
+ }
167
+ ```
168
+
169
+ This is necessary, as the default `aspectRatio` values are overwritten by this plugin's values.
170
+
171
+ ================================================================================
172
+
173
+ @tailwindcss/container-queries@0.1.0
174
+
175
+ # @tailwindcss/container-queries
176
+
177
+ A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
178
+
179
+ ## Installation
180
+
181
+ Install the plugin from npm:
182
+
183
+ ```sh
184
+ npm install @tailwindcss/container-queries
185
+ ```
186
+
187
+ Then add the plugin to your `tailwind.config.js` file:
188
+
189
+ ```js
190
+ // tailwind.config.js
191
+ module.exports = {
192
+ theme: {
193
+ // ...
194
+ },
195
+ plugins: [
196
+ require('@tailwindcss/container-queries'),
197
+ // ...
198
+ ],
199
+ }
200
+ ```
201
+
202
+ ## Usage
203
+
204
+ ```html
205
+ <!-- Container queries without a specific container name -->
206
+ <div class="@container">
207
+ <!-- Container query with a size of `lg` defined in your tailwind.config.js file -->
208
+ <div class="@lg:underline"></div>
209
+ <div class="@[1024px]:underline"></div>
210
+ </div>
211
+
212
+ <!-- Container queries that apply for a defined container name -->
213
+ <div class="@container/sidebar">
214
+ <div class="@lg/sidebar:underline"></div>
215
+ <div class="@[1024px]/sidebar:underline"></div>
216
+ </div>
217
+ ```
218
+
219
+ ### Container types
220
+
221
+ | Class | css |
222
+ | --------------------------- | ------------------------------------------------------- |
223
+ | `@container` | `container-type: inline-size;` |
224
+ | `@container/sidebar` | `container-type: inline-size; container-name: sidebar;` |
225
+ | `@container-normal` | `container-type: normal;` |
226
+ | `@container-normal/sidebar` | `container-type: inline-size; container-name: sidebar;` |
227
+
228
+ ## Configuration
229
+
230
+ By default we ship with the following configured values:
231
+
232
+ | Name | Value |
233
+ | ----- | ------- |
234
+ | `xs` | `20rem` |
235
+ | `sm` | `24rem` |
236
+ | `md` | `28rem` |
237
+ | `lg` | `32rem` |
238
+ | `xl` | `36rem` |
239
+ | `2xl` | `42rem` |
240
+ | `3xl` | `48rem` |
241
+ | `4xl` | `56rem` |
242
+ | `5xl` | `64rem` |
243
+ | `6xl` | `72rem` |
244
+ | `7xl` | `80rem` |
245
+
246
+ You can configure which values are available for this plugin under the `containers` key in your `tailwind.config.js` file:
247
+
248
+ ```js
249
+ // tailwind.config.js
250
+ module.exports = {
251
+ theme: {
252
+ extend: {
253
+ containers: {
254
+ xs: '20rem',
255
+ sm: '24rem',
256
+ md: '28rem',
257
+ lg: '32rem',
258
+ xl: '36rem',
259
+ // etc...
260
+ },
261
+ },
262
+ },
263
+ }
264
+ ```
265
+
266
+ ================================================================================
267
+
268
+ @tailwindcss/forms@0.5.3
269
+
270
+ MIT License
271
+
272
+ Copyright (c) Tailwind Labs, Inc.
273
+
274
+ Permission is hereby granted, free of charge, to any person obtaining a copy
275
+ of this software and associated documentation files (the "Software"), to deal
276
+ in the Software without restriction, including without limitation the rights
277
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
278
+ copies of the Software, and to permit persons to whom the Software is
279
+ furnished to do so, subject to the following conditions:
280
+
281
+ The above copyright notice and this permission notice shall be included in all
282
+ copies or substantial portions of the Software.
283
+
284
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ SOFTWARE.
291
+
292
+ ================================================================================
293
+
294
+ @tailwindcss/line-clamp@0.4.2
295
+
296
+ MIT License
297
+
298
+ Copyright (c) 2022 Tailwind Labs
299
+
300
+ Permission is hereby granted, free of charge, to any person obtaining a copy
301
+ of this software and associated documentation files (the "Software"), to deal
302
+ in the Software without restriction, including without limitation the rights
303
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
304
+ copies of the Software, and to permit persons to whom the Software is
305
+ furnished to do so, subject to the following conditions:
306
+
307
+ The above copyright notice and this permission notice shall be included in all
308
+ copies or substantial portions of the Software.
309
+
310
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
311
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
312
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
313
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
314
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
315
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
316
+ SOFTWARE.
317
+
318
+ ================================================================================
319
+
320
+ @tailwindcss/typography@0.5.7
321
+
322
+ MIT License
323
+
324
+ Copyright (c) Tailwind Labs, Inc.
325
+
326
+ Permission is hereby granted, free of charge, to any person obtaining a copy
327
+ of this software and associated documentation files (the "Software"), to deal
328
+ in the Software without restriction, including without limitation the rights
329
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
330
+ copies of the Software, and to permit persons to whom the Software is
331
+ furnished to do so, subject to the following conditions:
332
+
333
+ The above copyright notice and this permission notice shall be included in all
334
+ copies or substantial portions of the Software.
335
+
336
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
337
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
338
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
339
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
340
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
341
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
342
+ SOFTWARE.
343
+
344
+ ================================================================================
345
+
346
+ chokidar@3.5.1
347
+
348
+ The MIT License (MIT)
349
+
350
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
351
+
352
+ Permission is hereby granted, free of charge, to any person obtaining a copy
353
+ of this software and associated documentation files (the “Software”), to deal
354
+ in the Software without restriction, including without limitation the rights
355
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
356
+ copies of the Software, and to permit persons to whom the Software is
357
+ furnished to do so, subject to the following conditions:
358
+
359
+ The above copyright notice and this permission notice shall be included in
360
+ all copies or substantial portions of the Software.
361
+
362
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
363
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
364
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
365
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
366
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
367
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
368
+ THE SOFTWARE.
369
+
370
+ ================================================================================
371
+
372
+ color-name@1.1.4
373
+
374
+ The MIT License (MIT)
375
+ Copyright (c) 2015 Dmitry Ivanov
376
+
377
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
378
+
379
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
380
+
381
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
382
+
383
+ ================================================================================
384
+
385
+ culori@0.20.1
386
+
387
+ MIT License
388
+
389
+ Copyright (c) 2018 Dan Burzo
390
+
391
+ Permission is hereby granted, free of charge, to any person obtaining a copy
392
+ of this software and associated documentation files (the "Software"), to deal
393
+ in the Software without restriction, including without limitation the rights
394
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
395
+ copies of the Software, and to permit persons to whom the Software is
396
+ furnished to do so, subject to the following conditions:
397
+
398
+ The above copyright notice and this permission notice shall be included in all
399
+ copies or substantial portions of the Software.
400
+
401
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
402
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
403
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
404
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
405
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
406
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
407
+ SOFTWARE.
408
+
409
+ ================================================================================
410
+
411
+ debounce@1.2.0
412
+
413
+ # debounce
414
+
415
+ Useful for implementing behavior that should only happen after a repeated
416
+ action has completed.
417
+
418
+ ## Installation
419
+
420
+ $ component install component/debounce
421
+
422
+ Or in node:
423
+
424
+ $ npm install debounce
425
+
426
+ ## Example
427
+
428
+ ```js
429
+ var debounce = require('debounce');
430
+ window.onresize = debounce(resize, 200);
431
+
432
+ function resize(e) {
433
+ console.log('height', window.innerHeight);
434
+ console.log('width', window.innerWidth);
435
+ }
436
+ ```
437
+
438
+ To later clear the timer and cancel currently scheduled executions:
439
+ ```
440
+ window.onresize.clear();
441
+ ```
442
+
443
+ To execute any pending invocations and reset the timer:
444
+ ```
445
+ window.onresize.flush();
446
+ ```
447
+
448
+ Alternately, if using newer syntax:
449
+
450
+ ```js
451
+ import { debounce } from "debounce";
452
+ ```
453
+
454
+ ## API
455
+
456
+ ### debounce(fn, wait, [ immediate || false ])
457
+
458
+ Creates and returns a new debounced version of the passed function that
459
+ will postpone its execution until after wait milliseconds have elapsed
460
+ since the last time it was invoked.
461
+
462
+ Pass `true` for the `immediate` parameter to cause debounce to trigger
463
+ the function on the leading edge instead of the trailing edge of the wait
464
+ interval. Useful in circumstances like preventing accidental double-clicks
465
+ on a "submit" button from firing a second time.
466
+
467
+ The debounced function returned has a property 'clear' that is a
468
+ function that will clear any scheduled future executions of your function.
469
+
470
+ The debounced function returned has a property 'flush' that is a
471
+ function that will immediately execute the function if and only if execution is scheduled,
472
+ and reset the execution timer for subsequent invocations of the debounced
473
+ function.
474
+
475
+ ## License
476
+
477
+ MIT
478
+
479
+ Original implementation is from [`underscore.js`](http://underscorejs.org/)
480
+ which also has an MIT license.
481
+
482
+ ================================================================================
483
+
484
+ deepmerge@4.2.2
485
+
486
+ The MIT License (MIT)
487
+
488
+ Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
489
+
490
+ Permission is hereby granted, free of charge, to any person obtaining a copy
491
+ of this software and associated documentation files (the "Software"), to deal
492
+ in the Software without restriction, including without limitation the rights
493
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
494
+ copies of the Software, and to permit persons to whom the Software is
495
+ furnished to do so, subject to the following conditions:
496
+
497
+ The above copyright notice and this permission notice shall be included in
498
+ all copies or substantial portions of the Software.
499
+
500
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
501
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
502
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
503
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
504
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
505
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
506
+ THE SOFTWARE.
507
+
508
+ ================================================================================
509
+
510
+ dlv@1.1.3
511
+
512
+ # `dlv(obj, keypath)` [![NPM](https://img.shields.io/npm/v/dlv.svg)](https://npmjs.com/package/dlv) [![Build](https://travis-ci.org/developit/dlv.svg?branch=master)](https://travis-ci.org/developit/dlv)
513
+
514
+ > Safely get a dot-notated path within a nested object, with ability to return a default if the full key path does not exist or the value is undefined
515
+
516
+
517
+ ### Why?
518
+
519
+ Smallest possible implementation: only **130 bytes.**
520
+
521
+ You could write this yourself, but then you'd have to write [tests].
522
+
523
+ Supports ES Modules, CommonJS and globals.
524
+
525
+
526
+ ### Installation
527
+
528
+ `npm install --save dlv`
529
+
530
+
531
+ ### Usage
532
+
533
+ `delve(object, keypath, [default])`
534
+
535
+ ```js
536
+ import delve from 'dlv';
537
+
538
+ let obj = {
539
+ a: {
540
+ b: {
541
+ c: 1,
542
+ d: undefined,
543
+ e: null
544
+ }
545
+ }
546
+ };
547
+
548
+ //use string dot notation for keys
549
+ delve(obj, 'a.b.c') === 1;
550
+
551
+ //or use an array key
552
+ delve(obj, ['a', 'b', 'c']) === 1;
553
+
554
+ delve(obj, 'a.b') === obj.a.b;
555
+
556
+ //returns undefined if the full key path does not exist and no default is specified
557
+ delve(obj, 'a.b.f') === undefined;
558
+
559
+ //optional third parameter for default if the full key in path is missing
560
+ delve(obj, 'a.b.f', 'foo') === 'foo';
561
+
562
+ //or if the key exists but the value is undefined
563
+ delve(obj, 'a.b.d', 'foo') === 'foo';
564
+
565
+ //Non-truthy defined values are still returned if they exist at the full keypath
566
+ delve(obj, 'a.b.e', 'foo') === null;
567
+
568
+ //undefined obj or key returns undefined, unless a default is supplied
569
+ delve(undefined, 'a.b.c') === undefined;
570
+ delve(undefined, 'a.b.c', 'foo') === 'foo';
571
+ delve(obj, undefined, 'foo') === 'foo';
572
+ ```
573
+
574
+
575
+ ### Setter Counterparts
576
+
577
+ - [dset](https://github.com/lukeed/dset) by [@lukeed](https://github.com/lukeed) is the spiritual "set" counterpart of `dlv` and very fast.
578
+ - [bury](https://github.com/kalmbach/bury) by [@kalmbach](https://github.com/kalmbach) does the opposite of `dlv` and is implemented in a very similar manner.
579
+
580
+
581
+ ### License
582
+
583
+ [MIT](https://oss.ninja/mit/developit/)
584
+
585
+
586
+ [preact]: https://github.com/developit/preact
587
+ [tests]: https://github.com/developit/dlv/blob/master/test.js
588
+
589
+ ================================================================================
590
+
591
+ dset@3.1.2
592
+
593
+ The MIT License (MIT)
594
+
595
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
596
+
597
+ Permission is hereby granted, free of charge, to any person obtaining a copy
598
+ of this software and associated documentation files (the "Software"), to deal
599
+ in the Software without restriction, including without limitation the rights
600
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
601
+ copies of the Software, and to permit persons to whom the Software is
602
+ furnished to do so, subject to the following conditions:
603
+
604
+ The above copyright notice and this permission notice shall be included in
605
+ all copies or substantial portions of the Software.
606
+
607
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
608
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
609
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
610
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
611
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
612
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
613
+ THE SOFTWARE.
614
+
615
+ ================================================================================
616
+
617
+ enhanced-resolve-301@0.0.1
618
+
619
+ Copyright JS Foundation and other contributors
620
+
621
+ Permission is hereby granted, free of charge, to any person obtaining
622
+ a copy of this software and associated documentation files (the
623
+ 'Software'), to deal in the Software without restriction, including
624
+ without limitation the rights to use, copy, modify, merge, publish,
625
+ distribute, sublicense, and/or sell copies of the Software, and to
626
+ permit persons to whom the Software is furnished to do so, subject to
627
+ the following conditions:
628
+
629
+ The above copyright notice and this permission notice shall be
630
+ included in all copies or substantial portions of the Software.
631
+
632
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
633
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
634
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
635
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
636
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
637
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
638
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
639
+
640
+ ================================================================================
641
+
642
+ fast-glob@3.2.4
643
+
644
+ The MIT License (MIT)
645
+
646
+ Copyright (c) Denis Malinochkin
647
+
648
+ Permission is hereby granted, free of charge, to any person obtaining a copy
649
+ of this software and associated documentation files (the "Software"), to deal
650
+ in the Software without restriction, including without limitation the rights
651
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
652
+ copies of the Software, and to permit persons to whom the Software is
653
+ furnished to do so, subject to the following conditions:
654
+
655
+ The above copyright notice and this permission notice shall be included in all
656
+ copies or substantial portions of the Software.
657
+
658
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
659
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
660
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
661
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
662
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
663
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
664
+ SOFTWARE.
665
+
666
+ ================================================================================
667
+
668
+ find-up@5.0.0
669
+
670
+ MIT License
671
+
672
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
673
+
674
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
675
+
676
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
677
+
678
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
679
+
680
+ ================================================================================
681
+
682
+ is-builtin-module@3.2.1
683
+
684
+ MIT License
685
+
686
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
687
+
688
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
689
+
690
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
691
+
692
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
693
+
694
+ ================================================================================
695
+
696
+ klona@2.0.4
697
+
698
+ MIT License
699
+
700
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
701
+
702
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
703
+
704
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
705
+
706
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
707
+
708
+ ================================================================================
709
+
710
+ minimatch@5.1.4
711
+
712
+ The ISC License
713
+
714
+ Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
715
+
716
+ Permission to use, copy, modify, and/or distribute this software for any
717
+ purpose with or without fee is hereby granted, provided that the above
718
+ copyright notice and this permission notice appear in all copies.
719
+
720
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
721
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
722
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
723
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
724
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
725
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
726
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
727
+
728
+ ================================================================================
729
+
730
+ normalize-path@3.0.0
731
+
732
+ The MIT License (MIT)
733
+
734
+ Copyright (c) 2014-2018, Jon Schlinkert.
735
+
736
+ Permission is hereby granted, free of charge, to any person obtaining a copy
737
+ of this software and associated documentation files (the "Software"), to deal
738
+ in the Software without restriction, including without limitation the rights
739
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
740
+ copies of the Software, and to permit persons to whom the Software is
741
+ furnished to do so, subject to the following conditions:
742
+
743
+ The above copyright notice and this permission notice shall be included in
744
+ all copies or substantial portions of the Software.
745
+
746
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
747
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
748
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
749
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
750
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
751
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
752
+ THE SOFTWARE.
753
+
754
+ ================================================================================
755
+
756
+ pkg-up@3.1.0
757
+
758
+ MIT License
759
+
760
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
761
+
762
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
763
+
764
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
765
+
766
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
767
+
768
+ ================================================================================
769
+
770
+ postcss-load-config@3.0.1
771
+
772
+ The MIT License (MIT)
773
+
774
+ Copyright Michael Ciniawsky <michael.ciniawsky@gmail.com>
775
+
776
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
777
+ this software and associated documentation files (the "Software"), to deal in
778
+ the Software without restriction, including without limitation the rights to
779
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
780
+ the Software, and to permit persons to whom the Software is furnished to do so,
781
+ subject to the following conditions:
782
+
783
+ The above copyright notice and this permission notice shall be included in all
784
+ copies or substantial portions of the Software.
785
+
786
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
787
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
788
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
789
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
790
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
791
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
792
+
793
+ ================================================================================
794
+
795
+ postcss-selector-parser@6.0.2
796
+
797
+ Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
798
+
799
+ Permission is hereby granted, free of charge, to any person
800
+ obtaining a copy of this software and associated documentation
801
+ files (the "Software"), to deal in the Software without
802
+ restriction, including without limitation the rights to use,
803
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
804
+ copies of the Software, and to permit persons to whom the
805
+ Software is furnished to do so, subject to the following
806
+ conditions:
807
+
808
+ The above copyright notice and this permission notice shall be
809
+ included in all copies or substantial portions of the Software.
810
+
811
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
812
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
813
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
814
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
815
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
816
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
817
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
818
+ OTHER DEALINGS IN THE SOFTWARE.
819
+
820
+ ================================================================================
821
+
822
+ postcss@8.3.9
823
+
824
+ The MIT License (MIT)
825
+
826
+ Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
827
+
828
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
829
+ this software and associated documentation files (the "Software"), to deal in
830
+ the Software without restriction, including without limitation the rights to
831
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
832
+ the Software, and to permit persons to whom the Software is furnished to do so,
833
+ subject to the following conditions:
834
+
835
+ The above copyright notice and this permission notice shall be included in all
836
+ copies or substantial portions of the Software.
837
+
838
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
839
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
840
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
841
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
842
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
843
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
844
+
845
+ ================================================================================
846
+
847
+ resolve@1.20.0
848
+
849
+ MIT License
850
+
851
+ Copyright (c) 2012 James Halliday
852
+
853
+ Permission is hereby granted, free of charge, to any person obtaining a copy
854
+ of this software and associated documentation files (the "Software"), to deal
855
+ in the Software without restriction, including without limitation the rights
856
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
857
+ copies of the Software, and to permit persons to whom the Software is
858
+ furnished to do so, subject to the following conditions:
859
+
860
+ The above copyright notice and this permission notice shall be included in all
861
+ copies or substantial portions of the Software.
862
+
863
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
864
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
865
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
866
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
867
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
868
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
869
+ SOFTWARE.
870
+
871
+ ================================================================================
872
+
873
+ stack-trace@0.0.10
874
+
875
+ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com)
876
+
877
+ Permission is hereby granted, free of charge, to any person obtaining a copy
878
+ of this software and associated documentation files (the "Software"), to deal
879
+ in the Software without restriction, including without limitation the rights
880
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
881
+ copies of the Software, and to permit persons to whom the Software is
882
+ furnished to do so, subject to the following conditions:
883
+
884
+ The above copyright notice and this permission notice shall be included in
885
+ all copies or substantial portions of the Software.
886
+
887
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
888
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
889
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
890
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
891
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
892
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
893
+ THE SOFTWARE.
894
+
895
+ ================================================================================
896
+
897
+ tailwindcss@3.3.0
898
+
899
+ MIT License
900
+
901
+ Copyright (c) Tailwind Labs, Inc.
902
+
903
+ Permission is hereby granted, free of charge, to any person obtaining a copy
904
+ of this software and associated documentation files (the "Software"), to deal
905
+ in the Software without restriction, including without limitation the rights
906
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
907
+ copies of the Software, and to permit persons to whom the Software is
908
+ furnished to do so, subject to the following conditions:
909
+
910
+ The above copyright notice and this permission notice shall be included in all
911
+ copies or substantial portions of the Software.
912
+
913
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
914
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
915
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
916
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
917
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
918
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
919
+ SOFTWARE.
920
+
921
+ ================================================================================
922
+
923
+ vscode-css-languageservice@5.4.1
924
+
925
+ The MIT License (MIT)
926
+
927
+ Copyright (c) Microsoft
928
+
929
+ Permission is hereby granted, free of charge, to any person obtaining a copy
930
+ of this software and associated documentation files (the "Software"), to deal
931
+ in the Software without restriction, including without limitation the rights
932
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
933
+ copies of the Software, and to permit persons to whom the Software is
934
+ furnished to do so, subject to the following conditions:
935
+
936
+ The above copyright notice and this permission notice shall be included in all
937
+ copies or substantial portions of the Software.
938
+
939
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
940
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
941
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
942
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
943
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
944
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
945
+ SOFTWARE.
946
+
947
+ ================================================================================
948
+
949
+ vscode-languageserver-textdocument@1.0.7
950
+
951
+ Copyright (c) Microsoft Corporation
952
+
953
+ All rights reserved.
954
+
955
+ MIT License
956
+
957
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
958
+
959
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
960
+
961
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
962
+
963
+ ================================================================================
964
+
965
+ vscode-languageserver@8.0.2
966
+
967
+ Copyright (c) Microsoft Corporation
968
+
969
+ All rights reserved.
970
+
971
+ MIT License
972
+
973
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
974
+
975
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
976
+
977
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
978
+
979
+ ================================================================================
980
+
981
+ vscode-uri@3.0.2
982
+
983
+ The MIT License (MIT)
984
+
985
+ Copyright (c) Microsoft
986
+
987
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
988
+
989
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
990
+
991
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
992
+
993
+ ================================================================================
994
+
995
+ becke-ch--regex--s0-0-v1--base--pl--lib@1.4.0
996
+
997
+ Copyright 2017 becke.ch - All Rights Reserved
998
+ This file is part of becke-ch--regex--s0-v1
999
+
1000
+ becke.ch (MIT-style) License for the becke-ch--regex--s0-v1 Software
1001
+
1002
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1003
+
1004
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1005
+
1006
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1007
+
1008
+ ================================================================================
1009
+
1010
+ css.escape@1.5.1
1011
+
1012
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
1013
+
1014
+ Permission is hereby granted, free of charge, to any person obtaining
1015
+ a copy of this software and associated documentation files (the
1016
+ "Software"), to deal in the Software without restriction, including
1017
+ without limitation the rights to use, copy, modify, merge, publish,
1018
+ distribute, sublicense, and/or sell copies of the Software, and to
1019
+ permit persons to whom the Software is furnished to do so, subject to
1020
+ the following conditions:
1021
+
1022
+ The above copyright notice and this permission notice shall be
1023
+ included in all copies or substantial portions of the Software.
1024
+
1025
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1026
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1027
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1028
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1029
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1030
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1031
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1032
+
1033
+ ================================================================================
1034
+
1035
+ detect-indent@6.0.0
1036
+
1037
+ MIT License
1038
+
1039
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1040
+
1041
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1042
+
1043
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1044
+
1045
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1046
+
1047
+ ================================================================================
1048
+
1049
+ line-column@1.0.2
1050
+
1051
+ Copyright (c) 2016 IRIDE Monad <iride.monad@gmail.com>
1052
+
1053
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1054
+ of this software and associated documentation files (the "Software"), to deal
1055
+ in the Software without restriction, including without limitation the rights
1056
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1057
+ copies of the Software, and to permit persons to whom the Software is
1058
+ furnished to do so, subject to the following conditions:
1059
+
1060
+ The above copyright notice and this permission notice shall be included in all
1061
+ copies or substantial portions of the Software.
1062
+
1063
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1064
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1065
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1066
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1067
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1068
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1069
+ SOFTWARE.
1070
+
1071
+ ================================================================================
1072
+
1073
+ moo@0.5.1
1074
+
1075
+ BSD 3-Clause License
1076
+
1077
+ Copyright (c) 2017, Tim Radvan (tjvr)
1078
+ All rights reserved.
1079
+
1080
+ Redistribution and use in source and binary forms, with or without
1081
+ modification, are permitted provided that the following conditions are met:
1082
+
1083
+ * Redistributions of source code must retain the above copyright notice, this
1084
+ list of conditions and the following disclaimer.
1085
+
1086
+ * Redistributions in binary form must reproduce the above copyright notice,
1087
+ this list of conditions and the following disclaimer in the documentation
1088
+ and/or other materials provided with the distribution.
1089
+
1090
+ * Neither the name of the copyright holder nor the names of its
1091
+ contributors may be used to endorse or promote products derived from
1092
+ this software without specific prior written permission.
1093
+
1094
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1095
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1096
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1097
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1098
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1099
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1100
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1101
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1102
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1103
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1104
+
1105
+ ================================================================================
1106
+
1107
+ semver@7.3.7
1108
+
1109
+ The ISC License
1110
+
1111
+ Copyright (c) Isaac Z. Schlueter and Contributors
1112
+
1113
+ Permission to use, copy, modify, and/or distribute this software for any
1114
+ purpose with or without fee is hereby granted, provided that the above
1115
+ copyright notice and this permission notice appear in all copies.
1116
+
1117
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1118
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1119
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1120
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1121
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1122
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1123
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1124
+
1125
+ ================================================================================
1126
+
1127
+ sift-string@0.0.2
1128
+
1129
+ # sift
1130
+
1131
+ Fast String Distance (SIFT) Algorithm.
1132
+
1133
+ [![NPM](https://nodei.co/npm/sift-string.png)](https://nodei.co/npm/sift-string/)
1134
+
1135
+ [![Dependency Status](https://david-dm.org/timoxley/sift.png)](https://david-dm.org/timoxley/sift)
1136
+
1137
+ ## Installation
1138
+
1139
+ #### Browserify/Node
1140
+
1141
+ $ npm install sift-string
1142
+
1143
+
1144
+ #### Component
1145
+
1146
+ $ component install timoxley/sift
1147
+
1148
+ ## Demo
1149
+
1150
+ [Demo](http://timoxley.github.com/sift/examples/spellcheck/)
1151
+
1152
+ or if you want to check it out locally:
1153
+
1154
+ ```bash
1155
+ # run only once to install npm dev dependencies
1156
+ npm install .
1157
+ # this will install && build the components and open the demo web page
1158
+ npm run c-demo
1159
+ ```
1160
+
1161
+ ## API
1162
+
1163
+ ### sift(string, string)
1164
+
1165
+ Return 'distance' between two strings.
1166
+
1167
+ ## TODO
1168
+
1169
+ * Dictionary Helper supply it emits suggestions.
1170
+
1171
+ ## Credit
1172
+
1173
+ Code extracted from [MailCheck](https://github.com/kicksend/mailcheck)
1174
+
1175
+ ## License
1176
+
1177
+ MIT
1178
+
1179
+ ================================================================================
1180
+
1181
+ stringify-object@3.3.0
1182
+
1183
+ Copyright (c) 2015, Yeoman team
1184
+ All rights reserved.
1185
+
1186
+ Redistribution and use in source and binary forms, with or without
1187
+ modification, are permitted provided that the following conditions are met:
1188
+
1189
+ 1. Redistributions of source code must retain the above copyright notice, this
1190
+ list of conditions and the following disclaimer.
1191
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1192
+ this list of conditions and the following disclaimer in the documentation
1193
+ and/or other materials provided with the distribution.
1194
+
1195
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1196
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1197
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1198
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
1199
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1200
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1201
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1202
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1203
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1204
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1205
+
1206
+ ================================================================================
1207
+
1208
+ tmp-cache@1.1.0
1209
+
1210
+ The MIT License (MIT)
1211
+
1212
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
1213
+
1214
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1215
+ of this software and associated documentation files (the "Software"), to deal
1216
+ in the Software without restriction, including without limitation the rights
1217
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1218
+ copies of the Software, and to permit persons to whom the Software is
1219
+ furnished to do so, subject to the following conditions:
1220
+
1221
+ The above copyright notice and this permission notice shall be included in
1222
+ all copies or substantial portions of the Software.
1223
+
1224
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1225
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1226
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1227
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1228
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1229
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1230
+ THE SOFTWARE.