You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1160 line
52 KiB

  1. GitLens
  2. THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
  3. This project incorporates components from the projects listed below.
  4. 1. @microsoft/fast-element version 1.10.5 (https://github.com/Microsoft/fast)
  5. 2. @microsoft/fast-react-wrapper version 0.3.14 (https://github.com/Microsoft/fast)
  6. 3. @octokit/core version 4.0.5 (https://github.com/octokit/core.js)
  7. 4. @vscode/codicons version 0.0.32 (https://github.com/microsoft/vscode-codicons)
  8. 5. @vscode/webview-ui-toolkit version 1.1.0 (https://github.com/microsoft/vscode-webview-ui-toolkit)
  9. 6. ansi-regex version 6.0.1 (https://github.com/chalk/ansi-regex)
  10. 7. billboard.js version 3.5.1 (https://github.com/naver/billboard.js)
  11. 8. chroma-js version 2.4.2 (https://github.com/gka/chroma.js)
  12. 9. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
  13. 10. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
  14. 11. lit version 2.3.1 (https://github.com/lit/lit)
  15. 12. lodash-es version 4.17.21 (https://github.com/lodash/lodash)
  16. 13. md5.js version 1.3.5 (https://github.com/crypto-browserify/md5.js)
  17. 14. microsoft/vscode (https://github.com/microsoft/vscode)
  18. 15. node-fetch version 2.6.7 (https://github.com/bitinn/node-fetch)
  19. 16. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
  20. 17. react-dom version 16.8.4 (https://github.com/facebook/react)
  21. 18. react version 16.8.4 (https://github.com/facebook/react)
  22. 19. sindresorhus/is-fullwidth-code-point (https://github.com/sindresorhus/is-fullwidth-code-point)
  23. 20. sindresorhus/string-width (https://github.com/sindresorhus/string-width)
  24. 21. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
  25. %% @microsoft/fast-element NOTICES AND INFORMATION BEGIN HERE
  26. =========================================
  27. # FAST Element
  28. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  29. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-element.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-element)
  30. The `fast-element` library is a lightweight means to easily build performant, memory-efficient, standards-compliant Web Components. FAST Elements work in every major browser and can be used in combination with any front-end framework or even without a framework.
  31. ## Installation
  32. ### From NPM
  33. To install the `fast-element` library, use either `npm` or `yarn` as follows:
  34. ```shell
  35. npm install --save @microsoft/fast-element
  36. ```
  37. ```shell
  38. yarn add @microsoft/fast-element
  39. ```
  40. Within your JavaScript or TypeScript code, you can then import library APIs like this:
  41. ```ts
  42. import { FASTElement } from '@microsoft/fast-element';
  43. ```
  44. :::tip
  45. Looking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](../integrations/introduction.md).
  46. :::
  47. ### From CDN
  48. A pre-bundled script that contains all APIs needed to build web components with FAST Element is available on CDN. You can use this script by adding [`type="module"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) to the script element and then importing from the CDN.
  49. ```html
  50. <!DOCTYPE html>
  51. <html lang="en">
  52. <head>
  53. <script type="module">
  54. import { FASTElement } from "https://cdn.jsdelivr.net/npm/@microsoft/fast-element/dist/fast-element.min.js";
  55. // your code here
  56. </script>
  57. </head>
  58. <!-- ... -->
  59. </html>
  60. ```
  61. The markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that:
  62. ```html
  63. <script type="module" src="https://cdn.jsdelivr.net/npm/@microsoft/fast-element@1.6.2/dist/fast-element.min.js"></script>
  64. ```
  65. :::note
  66. For simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL.
  67. :::
  68. :::tip
  69. Looking for a quick guide on building components? Check out [our Cheat Sheet](../resources/cheat-sheet.md#building-components).
  70. :::
  71. =========================================
  72. END OF @microsoft/fast-element NOTICES AND INFORMATION
  73. %% @microsoft/fast-react-wrapper NOTICES AND INFORMATION BEGIN HERE
  74. =========================================
  75. # FAST React Wrapper
  76. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  77. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper)
  78. The `fast-react-wrapper` package contains a utility that enables automatically wrapping Web Components in a React component for ease of integration into React projects.
  79. ## Installation
  80. ### From NPM
  81. To install the `fast-react-wrapper` library, use either `npm` or `yarn` as follows:
  82. ```shell
  83. npm install --save @microsoft/fast-react-wrapper
  84. ```
  85. ```shell
  86. yarn add @microsoft/fast-react-wrapper
  87. ```
  88. Within your JavaScript or TypeScript code, you can then and use the wrapper like this:
  89. ```ts
  90. import React from 'react';
  91. import { provideReactWrapper } from '@microsoft/fast-react-wrapper';
  92. const { wrap } = provideReactWrapper(React);
  93. const MyComponent = wrap(MyComponent);
  94. ```
  95. For additional wrapper settings and more information on integrating with Design Systems, see [our integration docs](https://fast.design/docs/integrations/react).
  96. =========================================
  97. END OF @microsoft/fast-react-wrapper NOTICES AND INFORMATION
  98. %% @octokit/core NOTICES AND INFORMATION BEGIN HERE
  99. =========================================
  100. The MIT License
  101. Copyright (c) 2019 Octokit contributors
  102. Permission is hereby granted, free of charge, to any person obtaining a copy
  103. of this software and associated documentation files (the "Software"), to deal
  104. in the Software without restriction, including without limitation the rights
  105. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  106. copies of the Software, and to permit persons to whom the Software is
  107. furnished to do so, subject to the following conditions:
  108. The above copyright notice and this permission notice shall be included in
  109. all copies or substantial portions of the Software.
  110. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  111. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  112. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  113. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  114. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  115. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  116. THE SOFTWARE.
  117. =========================================
  118. END OF @octokit/core NOTICES AND INFORMATION
  119. %% @vscode/codicons NOTICES AND INFORMATION BEGIN HERE
  120. =========================================
  121. Attribution 4.0 International
  122. =======================================================================
  123. Creative Commons Corporation ("Creative Commons") is not a law firm and
  124. does not provide legal services or legal advice. Distribution of
  125. Creative Commons public licenses does not create a lawyer-client or
  126. other relationship. Creative Commons makes its licenses and related
  127. information available on an "as-is" basis. Creative Commons gives no
  128. warranties regarding its licenses, any material licensed under their
  129. terms and conditions, or any related information. Creative Commons
  130. disclaims all liability for damages resulting from their use to the
  131. fullest extent possible.
  132. Using Creative Commons Public Licenses
  133. Creative Commons public licenses provide a standard set of terms and
  134. conditions that creators and other rights holders may use to share
  135. original works of authorship and other material subject to copyright
  136. and certain other rights specified in the public license below. The
  137. following considerations are for informational purposes only, are not
  138. exhaustive, and do not form part of our licenses.
  139. Considerations for licensors: Our public licenses are
  140. intended for use by those authorized to give the public
  141. permission to use material in ways otherwise restricted by
  142. copyright and certain other rights. Our licenses are
  143. irrevocable. Licensors should read and understand the terms
  144. and conditions of the license they choose before applying it.
  145. Licensors should also secure all rights necessary before
  146. applying our licenses so that the public can reuse the
  147. material as expected. Licensors should clearly mark any
  148. material not subject to the license. This includes other CC-
  149. licensed material, or material used under an exception or
  150. limitation to copyright. More considerations for licensors:
  151. wiki.creativecommons.org/Considerations_for_licensors
  152. Considerations for the public: By using one of our public
  153. licenses, a licensor grants the public permission to use the
  154. licensed material under specified terms and conditions. If
  155. the licensor's permission is not necessary for any reason--for
  156. example, because of any applicable exception or limitation to
  157. copyright--then that use is not regulated by the license. Our
  158. licenses grant only permissions under copyright and certain
  159. other rights that a licensor has authority to grant. Use of
  160. the licensed material may still be restricted for other
  161. reasons, including because others have copyright or other
  162. rights in the material. A licensor may make special requests,
  163. such as asking that all changes be marked or described.
  164. Although not required by our licenses, you are encouraged to
  165. respect those requests where reasonable. More_considerations
  166. for the public:
  167. wiki.creativecommons.org/Considerations_for_licensees
  168. =======================================================================
  169. Creative Commons Attribution 4.0 International Public License
  170. By exercising the Licensed Rights (defined below), You accept and agree
  171. to be bound by the terms and conditions of this Creative Commons
  172. Attribution 4.0 International Public License ("Public License"). To the
  173. extent this Public License may be interpreted as a contract, You are
  174. granted the Licensed Rights in consideration of Your acceptance of
  175. these terms and conditions, and the Licensor grants You such rights in
  176. consideration of benefits the Licensor receives from making the
  177. Licensed Material available under these terms and conditions.
  178. Section 1 -- Definitions.
  179. a. Adapted Material means material subject to Copyright and Similar
  180. Rights that is derived from or based upon the Licensed Material
  181. and in which the Licensed Material is translated, altered,
  182. arranged, transformed, or otherwise modified in a manner requiring
  183. permission under the Copyright and Similar Rights held by the
  184. Licensor. For purposes of this Public License, where the Licensed
  185. Material is a musical work, performance, or sound recording,
  186. Adapted Material is always produced where the Licensed Material is
  187. synched in timed relation with a moving image.
  188. b. Adapter's License means the license You apply to Your Copyright
  189. and Similar Rights in Your contributions to Adapted Material in
  190. accordance with the terms and conditions of this Public License.
  191. c. Copyright and Similar Rights means copyright and/or similar rights
  192. closely related to copyright including, without limitation,
  193. performance, broadcast, sound recording, and Sui Generis Database
  194. Rights, without regard to how the rights are labeled or
  195. categorized. For purposes of this Public License, the rights
  196. specified in Section 2(b)(1)-(2) are not Copyright and Similar
  197. Rights.
  198. d. Effective Technological Measures means those measures that, in the
  199. absence of proper authority, may not be circumvented under laws
  200. fulfilling obligations under Article 11 of the WIPO Copyright
  201. Treaty adopted on December 20, 1996, and/or similar international
  202. agreements.
  203. e. Exceptions and Limitations means fair use, fair dealing, and/or
  204. any other exception or limitation to Copyright and Similar Rights
  205. that applies to Your use of the Licensed Material.
  206. f. Licensed Material means the artistic or literary work, database,
  207. or other material to which the Licensor applied this Public
  208. License.
  209. g. Licensed Rights means the rights granted to You subject to the
  210. terms and conditions of this Public License, which are limited to
  211. all Copyright and Similar Rights that apply to Your use of the
  212. Licensed Material and that the Licensor has authority to license.
  213. h. Licensor means the individual(s) or entity(ies) granting rights
  214. under this Public License.
  215. i. Share means to provide material to the public by any means or
  216. process that requires permission under the Licensed Rights, such
  217. as reproduction, public display, public performance, distribution,
  218. dissemination, communication, or importation, and to make material
  219. available to the public including in ways that members of the
  220. public may access the material from a place and at a time
  221. individually chosen by them.
  222. j. Sui Generis Database Rights means rights other than copyright
  223. resulting from Directive 96/9/EC of the European Parliament and of
  224. the Council of 11 March 1996 on the legal protection of databases,
  225. as amended and/or succeeded, as well as other essentially
  226. equivalent rights anywhere in the world.
  227. k. You means the individual or entity exercising the Licensed Rights
  228. under this Public License. Your has a corresponding meaning.
  229. Section 2 -- Scope.
  230. a. License grant.
  231. 1. Subject to the terms and conditions of this Public License,
  232. the Licensor hereby grants You a worldwide, royalty-free,
  233. non-sublicensable, non-exclusive, irrevocable license to
  234. exercise the Licensed Rights in the Licensed Material to:
  235. a. reproduce and Share the Licensed Material, in whole or
  236. in part; and
  237. b. produce, reproduce, and Share Adapted Material.
  238. 2. Exceptions and Limitations. For the avoidance of doubt, where
  239. Exceptions and Limitations apply to Your use, this Public
  240. License does not apply, and You do not need to comply with
  241. its terms and conditions.
  242. 3. Term. The term of this Public License is specified in Section
  243. 6(a).
  244. 4. Media and formats; technical modifications allowed. The
  245. Licensor authorizes You to exercise the Licensed Rights in
  246. all media and formats whether now known or hereafter created,
  247. and to make technical modifications necessary to do so. The
  248. Licensor waives and/or agrees not to assert any right or
  249. authority to forbid You from making technical modifications
  250. necessary to exercise the Licensed Rights, including
  251. technical modifications necessary to circumvent Effective
  252. Technological Measures. For purposes of this Public License,
  253. simply making modifications authorized by this Section 2(a)
  254. (4) never produces Adapted Material.
  255. 5. Downstream recipients.
  256. a. Offer from the Licensor -- Licensed Material. Every
  257. recipient of the Licensed Material automatically
  258. receives an offer from the Licensor to exercise the
  259. Licensed Rights under the terms and conditions of this
  260. Public License.
  261. b. No downstream restrictions. You may not offer or impose
  262. any additional or different terms or conditions on, or
  263. apply any Effective Technological Measures to, the
  264. Licensed Material if doing so restricts exercise of the
  265. Licensed Rights by any recipient of the Licensed
  266. Material.
  267. 6. No endorsement. Nothing in this Public License constitutes or
  268. may be construed as permission to assert or imply that You
  269. are, or that Your use of the Licensed Material is, connected
  270. with, or sponsored, endorsed, or granted official status by,
  271. the Licensor or others designated to receive attribution as
  272. provided in Section 3(a)(1)(A)(i).
  273. b. Other rights.
  274. 1. Moral rights, such as the right of integrity, are not
  275. licensed under this Public License, nor are publicity,
  276. privacy, and/or other similar personality rights; however, to
  277. the extent possible, the Licensor waives and/or agrees not to
  278. assert any such rights held by the Licensor to the limited
  279. extent necessary to allow You to exercise the Licensed
  280. Rights, but not otherwise.
  281. 2. Patent and trademark rights are not licensed under this
  282. Public License.
  283. 3. To the extent possible, the Licensor waives any right to
  284. collect royalties from You for the exercise of the Licensed
  285. Rights, whether directly or through a collecting society
  286. under any voluntary or waivable statutory or compulsory
  287. licensing scheme. In all other cases the Licensor expressly
  288. reserves any right to collect such royalties.
  289. Section 3 -- License Conditions.
  290. Your exercise of the Licensed Rights is expressly made subject to the
  291. following conditions.
  292. a. Attribution.
  293. 1. If You Share the Licensed Material (including in modified
  294. form), You must:
  295. a. retain the following if it is supplied by the Licensor
  296. with the Licensed Material:
  297. i. identification of the creator(s) of the Licensed
  298. Material and any others designated to receive
  299. attribution, in any reasonable manner requested by
  300. the Licensor (including by pseudonym if
  301. designated);
  302. ii. a copyright notice;
  303. iii. a notice that refers to this Public License;
  304. iv. a notice that refers to the disclaimer of
  305. warranties;
  306. v. a URI or hyperlink to the Licensed Material to the
  307. extent reasonably practicable;
  308. b. indicate if You modified the Licensed Material and
  309. retain an indication of any previous modifications; and
  310. c. indicate the Licensed Material is licensed under this
  311. Public License, and include the text of, or the URI or
  312. hyperlink to, this Public License.
  313. 2. You may satisfy the conditions in Section 3(a)(1) in any
  314. reasonable manner based on the medium, means, and context in
  315. which You Share the Licensed Material. For example, it may be
  316. reasonable to satisfy the conditions by providing a URI or
  317. hyperlink to a resource that includes the required
  318. information.
  319. 3. If requested by the Licensor, You must remove any of the
  320. information required by Section 3(a)(1)(A) to the extent
  321. reasonably practicable.
  322. 4. If You Share Adapted Material You produce, the Adapter's
  323. License You apply must not prevent recipients of the Adapted
  324. Material from complying with this Public License.
  325. Section 4 -- Sui Generis Database Rights.
  326. Where the Licensed Rights include Sui Generis Database Rights that
  327. apply to Your use of the Licensed Material:
  328. a. for the avoidance of doubt, Section 2(a)(1) grants You the right
  329. to extract, reuse, reproduce, and Share all or a substantial
  330. portion of the contents of the database;
  331. b. if You include all or a substantial portion of the database
  332. contents in a database in which You have Sui Generis Database
  333. Rights, then the database in which You have Sui Generis Database
  334. Rights (but not its individual contents) is Adapted Material; and
  335. c. You must comply with the conditions in Section 3(a) if You Share
  336. all or a substantial portion of the contents of the database.
  337. For the avoidance of doubt, this Section 4 supplements and does not
  338. replace Your obligations under this Public License where the Licensed
  339. Rights include other Copyright and Similar Rights.
  340. Section 5 -- Disclaimer of Warranties and Limitation of Liability.
  341. a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
  342. EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
  343. AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
  344. ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
  345. IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
  346. WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  347. PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
  348. ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
  349. KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
  350. ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
  351. b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
  352. TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
  353. NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
  354. INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
  355. COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
  356. USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
  357. ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
  358. DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
  359. IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
  360. c. The disclaimer of warranties and limitation of liability provided
  361. above shall be interpreted in a manner that, to the extent
  362. possible, most closely approximates an absolute disclaimer and
  363. waiver of all liability.
  364. Section 6 -- Term and Termination.
  365. a. This Public License applies for the term of the Copyright and
  366. Similar Rights licensed here. However, if You fail to comply with
  367. this Public License, then Your rights under this Public License
  368. terminate automatically.
  369. b. Where Your right to use the Licensed Material has terminated under
  370. Section 6(a), it reinstates:
  371. 1. automatically as of the date the violation is cured, provided
  372. it is cured within 30 days of Your discovery of the
  373. violation; or
  374. 2. upon express reinstatement by the Licensor.
  375. For the avoidance of doubt, this Section 6(b) does not affect any
  376. right the Licensor may have to seek remedies for Your violations
  377. of this Public License.
  378. c. For the avoidance of doubt, the Licensor may also offer the
  379. Licensed Material under separate terms or conditions or stop
  380. distributing the Licensed Material at any time; however, doing so
  381. will not terminate this Public License.
  382. d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
  383. License.
  384. Section 7 -- Other Terms and Conditions.
  385. a. The Licensor shall not be bound by any additional or different
  386. terms or conditions communicated by You unless expressly agreed.
  387. b. Any arrangements, understandings, or agreements regarding the
  388. Licensed Material not stated herein are separate from and
  389. independent of the terms and conditions of this Public License.
  390. Section 8 -- Interpretation.
  391. a. For the avoidance of doubt, this Public License does not, and
  392. shall not be interpreted to, reduce, limit, restrict, or impose
  393. conditions on any use of the Licensed Material that could lawfully
  394. be made without permission under this Public License.
  395. b. To the extent possible, if any provision of this Public License is
  396. deemed unenforceable, it shall be automatically reformed to the
  397. minimum extent necessary to make it enforceable. If the provision
  398. cannot be reformed, it shall be severed from this Public License
  399. without affecting the enforceability of the remaining terms and
  400. conditions.
  401. c. No term or condition of this Public License will be waived and no
  402. failure to comply consented to unless expressly agreed to by the
  403. Licensor.
  404. d. Nothing in this Public License constitutes or may be interpreted
  405. as a limitation upon, or waiver of, any privileges and immunities
  406. that apply to the Licensor or You, including from the legal
  407. processes of any jurisdiction or authority.
  408. =======================================================================
  409. Creative Commons is not a party to its public
  410. licenses. Notwithstanding, Creative Commons may elect to apply one of
  411. its public licenses to material it publishes and in those instances
  412. will be considered the “Licensor.” The text of the Creative Commons
  413. public licenses is dedicated to the public domain under the CC0 Public
  414. Domain Dedication. Except for the limited purpose of indicating that
  415. material is shared under a Creative Commons public license or as
  416. otherwise permitted by the Creative Commons policies published at
  417. creativecommons.org/policies, Creative Commons does not authorize the
  418. use of the trademark "Creative Commons" or any other trademark or logo
  419. of Creative Commons without its prior written consent including,
  420. without limitation, in connection with any unauthorized modifications
  421. to any of its public licenses or any other arrangements,
  422. understandings, or agreements concerning use of licensed material. For
  423. the avoidance of doubt, this paragraph does not form part of the
  424. public licenses.
  425. Creative Commons may be contacted at creativecommons.org.
  426. =========================================
  427. END OF @vscode/codicons NOTICES AND INFORMATION
  428. %% @vscode/webview-ui-toolkit NOTICES AND INFORMATION BEGIN HERE
  429. =========================================
  430. Copyright (c) Microsoft Corporation.
  431. MIT License
  432. Permission is hereby granted, free of charge, to any person obtaining a copy
  433. of this software and associated documentation files (the "Software"), to deal
  434. in the Software without restriction, including without limitation the rights
  435. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  436. copies of the Software, and to permit persons to whom the Software is
  437. furnished to do so, subject to the following conditions:
  438. The above copyright notice and this permission notice shall be included in all
  439. copies or substantial portions of the Software.
  440. THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  441. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  442. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  443. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  444. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  445. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  446. SOFTWARE.
  447. =========================================
  448. END OF @vscode/webview-ui-toolkit NOTICES AND INFORMATION
  449. %% ansi-regex NOTICES AND INFORMATION BEGIN HERE
  450. =========================================
  451. MIT License
  452. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  453. 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:
  454. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  455. 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.
  456. =========================================
  457. END OF ansi-regex NOTICES AND INFORMATION
  458. %% billboard.js NOTICES AND INFORMATION BEGIN HERE
  459. =========================================
  460. The MIT License (MIT)
  461. Copyright (c) 2017 ~ present NAVER Corp.
  462. Copyright (c) 2013 Masayuki Tanaka
  463. Permission is hereby granted, free of charge, to any person obtaining a copy of
  464. this software and associated documentation files (the "Software"), to deal in
  465. the Software without restriction, including without limitation the rights to
  466. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  467. the Software, and to permit persons to whom the Software is furnished to do so,
  468. subject to the following conditions:
  469. The above copyright notice and this permission notice shall be included in all
  470. copies or substantial portions of the Software.
  471. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  472. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  473. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  474. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  475. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  476. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  477. =========================================
  478. END OF billboard.js NOTICES AND INFORMATION
  479. %% chroma-js NOTICES AND INFORMATION BEGIN HERE
  480. =========================================
  481. chroma.js - JavaScript library for color conversions
  482. Copyright (c) 2011-2019, Gregor Aisch
  483. All rights reserved.
  484. Redistribution and use in source and binary forms, with or without
  485. modification, are permitted provided that the following conditions are met:
  486. 1. Redistributions of source code must retain the above copyright notice, this
  487. list of conditions and the following disclaimer.
  488. 2. Redistributions in binary form must reproduce the above copyright notice,
  489. this list of conditions and the following disclaimer in the documentation
  490. and/or other materials provided with the distribution.
  491. 3. The name Gregor Aisch may not be used to endorse or promote products
  492. derived from this software without specific prior written permission.
  493. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  494. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  495. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  496. DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  497. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  498. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  499. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  500. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  501. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  502. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  503. -------------------------------------------------------
  504. chroma.js includes colors from colorbrewer2.org, which are released under
  505. the following license:
  506. Copyright (c) 2002 Cynthia Brewer, Mark Harrower,
  507. and The Pennsylvania State University.
  508. Licensed under the Apache License, Version 2.0 (the "License");
  509. you may not use this file except in compliance with the License.
  510. You may obtain a copy of the License at
  511. http://www.apache.org/licenses/LICENSE-2.0
  512. Unless required by applicable law or agreed to in writing,
  513. software distributed under the License is distributed on an
  514. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  515. either express or implied. See the License for the specific
  516. language governing permissions and limitations under the License.
  517. ------------------------------------------------------
  518. Named colors are taken from X11 Color Names.
  519. http://www.w3.org/TR/css3-color/#svg-color
  520. @preserve
  521. =========================================
  522. END OF chroma-js NOTICES AND INFORMATION
  523. %% https-proxy-agent NOTICES AND INFORMATION BEGIN HERE
  524. =========================================
  525. https-proxy-agent
  526. ================
  527. ### An HTTP(s) proxy `http.Agent` implementation for HTTPS
  528. [![Build Status](https://github.com/TooTallNate/node-https-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-https-proxy-agent/actions?workflow=Node+CI)
  529. This module provides an `http.Agent` implementation that connects to a specified
  530. HTTP or HTTPS proxy server, and can be used with the built-in `https` module.
  531. Specifically, this `Agent` implementation connects to an intermediary "proxy"
  532. server and issues the [CONNECT HTTP method][CONNECT], which tells the proxy to
  533. open a direct TCP connection to the destination server.
  534. Since this agent implements the CONNECT HTTP method, it also works with other
  535. protocols that use this method when connecting over proxies (i.e. WebSockets).
  536. See the "Examples" section below for more.
  537. Installation
  538. ------------
  539. Install with `npm`:
  540. ``` bash
  541. $ npm install https-proxy-agent
  542. ```
  543. Examples
  544. --------
  545. #### `https` module example
  546. ``` js
  547. var url = require('url');
  548. var https = require('https');
  549. var HttpsProxyAgent = require('https-proxy-agent');
  550. // HTTP/HTTPS proxy to connect to
  551. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  552. console.log('using proxy server %j', proxy);
  553. // HTTPS endpoint for the proxy to connect to
  554. var endpoint = process.argv[2] || 'https://graph.facebook.com/tootallnate';
  555. console.log('attempting to GET %j', endpoint);
  556. var options = url.parse(endpoint);
  557. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  558. var agent = new HttpsProxyAgent(proxy);
  559. options.agent = agent;
  560. https.get(options, function (res) {
  561. console.log('"response" event!', res.headers);
  562. res.pipe(process.stdout);
  563. });
  564. ```
  565. #### `ws` WebSocket connection example
  566. ``` js
  567. var url = require('url');
  568. var WebSocket = require('ws');
  569. var HttpsProxyAgent = require('https-proxy-agent');
  570. // HTTP/HTTPS proxy to connect to
  571. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  572. console.log('using proxy server %j', proxy);
  573. // WebSocket endpoint for the proxy to connect to
  574. var endpoint = process.argv[2] || 'ws://echo.websocket.org';
  575. var parsed = url.parse(endpoint);
  576. console.log('attempting to connect to WebSocket %j', endpoint);
  577. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  578. var options = url.parse(proxy);
  579. var agent = new HttpsProxyAgent(options);
  580. // finally, initiate the WebSocket connection
  581. var socket = new WebSocket(endpoint, { agent: agent });
  582. socket.on('open', function () {
  583. console.log('"open" event!');
  584. socket.send('hello world');
  585. });
  586. socket.on('message', function (data, flags) {
  587. console.log('"message" event! %j %j', data, flags);
  588. socket.close();
  589. });
  590. ```
  591. API
  592. ---
  593. ### new HttpsProxyAgent(Object options)
  594. The `HttpsProxyAgent` class implements an `http.Agent` subclass that connects
  595. to the specified "HTTP(s) proxy server" in order to proxy HTTPS and/or WebSocket
  596. requests. This is achieved by using the [HTTP `CONNECT` method][CONNECT].
  597. The `options` argument may either be a string URI of the proxy server to use, or an
  598. "options" object with more specific properties:
  599. * `host` - String - Proxy host to connect to (may use `hostname` as well). Required.
  600. * `port` - Number - Proxy port to connect to. Required.
  601. * `protocol` - String - If `https:`, then use TLS to connect to the proxy.
  602. * `headers` - Object - Additional HTTP headers to be sent on the HTTP CONNECT method.
  603. * Any other options given are passed to the `net.connect()`/`tls.connect()` functions.
  604. License
  605. -------
  606. (The MIT License)
  607. Copyright (c) 2013 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
  608. Permission is hereby granted, free of charge, to any person obtaining
  609. a copy of this software and associated documentation files (the
  610. 'Software'), to deal in the Software without restriction, including
  611. without limitation the rights to use, copy, modify, merge, publish,
  612. distribute, sublicense, and/or sell copies of the Software, and to
  613. permit persons to whom the Software is furnished to do so, subject to
  614. the following conditions:
  615. The above copyright notice and this permission notice shall be
  616. included in all copies or substantial portions of the Software.
  617. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  618. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  619. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  620. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  621. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  622. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  623. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  624. [CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling
  625. =========================================
  626. END OF https-proxy-agent NOTICES AND INFORMATION
  627. %% iconv-lite NOTICES AND INFORMATION BEGIN HERE
  628. =========================================
  629. Copyright (c) 2011 Alexander Shtuchkin
  630. Permission is hereby granted, free of charge, to any person obtaining
  631. a copy of this software and associated documentation files (the
  632. "Software"), to deal in the Software without restriction, including
  633. without limitation the rights to use, copy, modify, merge, publish,
  634. distribute, sublicense, and/or sell copies of the Software, and to
  635. permit persons to whom the Software is furnished to do so, subject to
  636. the following conditions:
  637. The above copyright notice and this permission notice shall be
  638. included in all copies or substantial portions of the Software.
  639. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  640. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  641. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  642. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  643. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  644. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  645. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  646. =========================================
  647. END OF iconv-lite NOTICES AND INFORMATION
  648. %% lit NOTICES AND INFORMATION BEGIN HERE
  649. =========================================
  650. BSD 3-Clause License
  651. Copyright (c) 2017 Google LLC. All rights reserved.
  652. Redistribution and use in source and binary forms, with or without
  653. modification, are permitted provided that the following conditions are met:
  654. 1. Redistributions of source code must retain the above copyright notice, this
  655. list of conditions and the following disclaimer.
  656. 2. Redistributions in binary form must reproduce the above copyright notice,
  657. this list of conditions and the following disclaimer in the documentation
  658. and/or other materials provided with the distribution.
  659. 3. Neither the name of the copyright holder nor the names of its
  660. contributors may be used to endorse or promote products derived from
  661. this software without specific prior written permission.
  662. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  663. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  664. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  665. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  666. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  667. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  668. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  669. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  670. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  671. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  672. =========================================
  673. END OF lit NOTICES AND INFORMATION
  674. %% lodash-es NOTICES AND INFORMATION BEGIN HERE
  675. =========================================
  676. Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
  677. Based on Underscore.js, copyright Jeremy Ashkenas,
  678. DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
  679. This software consists of voluntary contributions made by many
  680. individuals. For exact contribution history, see the revision history
  681. available at https://github.com/lodash/lodash
  682. The following license applies to all parts of this software except as
  683. documented below:
  684. ====
  685. Permission is hereby granted, free of charge, to any person obtaining
  686. a copy of this software and associated documentation files (the
  687. "Software"), to deal in the Software without restriction, including
  688. without limitation the rights to use, copy, modify, merge, publish,
  689. distribute, sublicense, and/or sell copies of the Software, and to
  690. permit persons to whom the Software is furnished to do so, subject to
  691. the following conditions:
  692. The above copyright notice and this permission notice shall be
  693. included in all copies or substantial portions of the Software.
  694. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  695. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  696. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  697. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  698. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  699. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  700. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  701. ====
  702. Copyright and related rights for sample code are waived via CC0. Sample
  703. code is defined as all source code displayed within the prose of the
  704. documentation.
  705. CC0: http://creativecommons.org/publicdomain/zero/1.0/
  706. ====
  707. Files located in the node_modules and vendor directories are externally
  708. maintained libraries used by this software which have their own
  709. licenses; we recommend you read them, as their terms may differ from the
  710. terms above.
  711. =========================================
  712. END OF lodash-es NOTICES AND INFORMATION
  713. %% md5.js NOTICES AND INFORMATION BEGIN HERE
  714. =========================================
  715. The MIT License (MIT)
  716. Copyright (c) 2016 Kirill Fomichev
  717. Permission is hereby granted, free of charge, to any person obtaining a copy
  718. of this software and associated documentation files (the "Software"), to deal
  719. in the Software without restriction, including without limitation the rights
  720. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  721. copies of the Software, and to permit persons to whom the Software is
  722. furnished to do so, subject to the following conditions:
  723. The above copyright notice and this permission notice shall be included in
  724. all copies or substantial portions of the Software.
  725. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  726. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  727. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  728. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  729. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  730. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  731. THE SOFTWARE.
  732. =========================================
  733. END OF md5.js NOTICES AND INFORMATION
  734. %% microsoft/vscode NOTICES AND INFORMATION BEGIN HERE
  735. =========================================
  736. MIT License
  737. Copyright (c) 2015 - present Microsoft Corporation
  738. Permission is hereby granted, free of charge, to any person obtaining a copy
  739. of this software and associated documentation files (the "Software"), to deal
  740. in the Software without restriction, including without limitation the rights
  741. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  742. copies of the Software, and to permit persons to whom the Software is
  743. furnished to do so, subject to the following conditions:
  744. The above copyright notice and this permission notice shall be included in all
  745. copies or substantial portions of the Software.
  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 THE
  752. SOFTWARE.
  753. =========================================
  754. END OF microsoft/vscode NOTICES AND INFORMATION
  755. %% node-fetch NOTICES AND INFORMATION BEGIN HERE
  756. =========================================
  757. The MIT License (MIT)
  758. Copyright (c) 2016 David Frank
  759. Permission is hereby granted, free of charge, to any person obtaining a copy
  760. of this software and associated documentation files (the "Software"), to deal
  761. in the Software without restriction, including without limitation the rights
  762. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  763. copies of the Software, and to permit persons to whom the Software is
  764. furnished to do so, subject to the following conditions:
  765. The above copyright notice and this permission notice shall be included in all
  766. copies or substantial portions of the Software.
  767. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  768. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  769. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  770. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  771. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  772. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  773. SOFTWARE.
  774. =========================================
  775. END OF node-fetch NOTICES AND INFORMATION
  776. %% path-browserify NOTICES AND INFORMATION BEGIN HERE
  777. =========================================
  778. MIT License
  779. Copyright (c) 2013 James Halliday
  780. Permission is hereby granted, free of charge, to any person obtaining a copy of
  781. this software and associated documentation files (the "Software"), to deal in
  782. the Software without restriction, including without limitation the rights to
  783. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  784. the Software, and to permit persons to whom the Software is furnished to do so,
  785. subject to the following conditions:
  786. The above copyright notice and this permission notice shall be included in all
  787. copies or substantial portions of the Software.
  788. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  789. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  790. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  791. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  792. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  793. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  794. =========================================
  795. END OF path-browserify NOTICES AND INFORMATION
  796. %% react-dom NOTICES AND INFORMATION BEGIN HERE
  797. =========================================
  798. MIT License
  799. Copyright (c) Facebook, Inc. and its affiliates.
  800. Permission is hereby granted, free of charge, to any person obtaining a copy
  801. of this software and associated documentation files (the "Software"), to deal
  802. in the Software without restriction, including without limitation the rights
  803. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  804. copies of the Software, and to permit persons to whom the Software is
  805. furnished to do so, subject to the following conditions:
  806. The above copyright notice and this permission notice shall be included in all
  807. copies or substantial portions of the Software.
  808. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  809. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  810. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  811. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  812. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  813. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  814. SOFTWARE.
  815. =========================================
  816. END OF react-dom NOTICES AND INFORMATION
  817. %% react NOTICES AND INFORMATION BEGIN HERE
  818. =========================================
  819. MIT License
  820. Copyright (c) Facebook, Inc. and its affiliates.
  821. Permission is hereby granted, free of charge, to any person obtaining a copy
  822. of this software and associated documentation files (the "Software"), to deal
  823. in the Software without restriction, including without limitation the rights
  824. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  825. copies of the Software, and to permit persons to whom the Software is
  826. furnished to do so, subject to the following conditions:
  827. The above copyright notice and this permission notice shall be included in all
  828. copies or substantial portions of the Software.
  829. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  830. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  831. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  832. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  833. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  834. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  835. SOFTWARE.
  836. =========================================
  837. END OF react NOTICES AND INFORMATION
  838. %% sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION BEGIN HERE
  839. =========================================
  840. MIT License
  841. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  842. 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:
  843. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  844. 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.
  845. =========================================
  846. END OF sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION
  847. %% sindresorhus/string-width NOTICES AND INFORMATION BEGIN HERE
  848. =========================================
  849. MIT License
  850. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  851. 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:
  852. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  853. 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.
  854. =========================================
  855. END OF sindresorhus/string-width NOTICES AND INFORMATION
  856. %% sortablejs NOTICES AND INFORMATION BEGIN HERE
  857. =========================================
  858. MIT License
  859. Copyright (c) 2019 All contributors to Sortable
  860. Permission is hereby granted, free of charge, to any person obtaining a copy
  861. of this software and associated documentation files (the "Software"), to deal
  862. in the Software without restriction, including without limitation the rights
  863. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  864. copies of the Software, and to permit persons to whom the Software is
  865. furnished to do so, subject to the following conditions:
  866. The above copyright notice and this permission notice shall be included in all
  867. copies or substantial portions of the Software.
  868. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  869. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  870. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  871. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  872. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  873. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  874. SOFTWARE.
  875. =========================================
  876. END OF sortablejs NOTICES AND INFORMATION