@cyberismo/backend 0.0.21 → 0.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/dist/app.d.ts +5 -2
  2. package/dist/app.js +25 -10
  3. package/dist/app.js.map +1 -1
  4. package/dist/auth/index.d.ts +16 -0
  5. package/dist/auth/index.js +15 -0
  6. package/dist/auth/index.js.map +1 -0
  7. package/dist/auth/keycloak.d.ts +27 -0
  8. package/dist/auth/keycloak.js +81 -0
  9. package/dist/auth/keycloak.js.map +1 -0
  10. package/dist/auth/mock.d.ts +23 -0
  11. package/dist/auth/mock.js +28 -0
  12. package/dist/auth/mock.js.map +1 -0
  13. package/dist/auth/types.d.ts +16 -0
  14. package/dist/auth/types.js +14 -0
  15. package/dist/auth/types.js.map +1 -0
  16. package/dist/domain/auth/index.d.ts +14 -0
  17. package/dist/domain/auth/index.js +30 -0
  18. package/dist/domain/auth/index.js.map +1 -0
  19. package/dist/domain/calculations/index.js +3 -1
  20. package/dist/domain/calculations/index.js.map +1 -1
  21. package/dist/domain/calculations/service.js +13 -11
  22. package/dist/domain/calculations/service.js.map +1 -1
  23. package/dist/domain/cardTypes/index.js +5 -3
  24. package/dist/domain/cardTypes/index.js.map +1 -1
  25. package/dist/domain/cardTypes/service.js +24 -72
  26. package/dist/domain/cardTypes/service.js.map +1 -1
  27. package/dist/domain/cards/index.js +124 -25
  28. package/dist/domain/cards/index.js.map +1 -1
  29. package/dist/domain/cards/lib.js +92 -93
  30. package/dist/domain/cards/lib.js.map +1 -1
  31. package/dist/domain/cards/presence.d.ts +50 -0
  32. package/dist/domain/cards/presence.js +93 -0
  33. package/dist/domain/cards/presence.js.map +1 -0
  34. package/dist/domain/cards/schema.d.ts +47 -0
  35. package/dist/domain/cards/schema.js +37 -0
  36. package/dist/domain/cards/schema.js.map +1 -0
  37. package/dist/domain/cards/service.d.ts +7 -3
  38. package/dist/domain/cards/service.js +81 -91
  39. package/dist/domain/cards/service.js.map +1 -1
  40. package/dist/domain/connectors/index.d.ts +15 -0
  41. package/dist/domain/connectors/index.js +37 -0
  42. package/dist/domain/connectors/index.js.map +1 -0
  43. package/dist/domain/connectors/service.d.ts +23 -0
  44. package/dist/domain/connectors/service.js +46 -0
  45. package/dist/domain/connectors/service.js.map +1 -0
  46. package/dist/domain/fieldTypes/index.js +4 -2
  47. package/dist/domain/fieldTypes/index.js.map +1 -1
  48. package/dist/domain/graphModels/index.js +3 -1
  49. package/dist/domain/graphModels/index.js.map +1 -1
  50. package/dist/domain/graphViews/index.js +3 -1
  51. package/dist/domain/graphViews/index.js.map +1 -1
  52. package/dist/domain/labels/index.js +4 -2
  53. package/dist/domain/labels/index.js.map +1 -1
  54. package/dist/domain/labels/service.d.ts +1 -1
  55. package/dist/domain/labels/service.js +2 -2
  56. package/dist/domain/labels/service.js.map +1 -1
  57. package/dist/domain/linkTypes/index.js +4 -2
  58. package/dist/domain/linkTypes/index.js.map +1 -1
  59. package/dist/domain/logicPrograms/index.js +3 -1
  60. package/dist/domain/logicPrograms/index.js.map +1 -1
  61. package/dist/domain/mcp/index.d.ts +15 -0
  62. package/dist/domain/mcp/index.js +127 -0
  63. package/dist/domain/mcp/index.js.map +1 -0
  64. package/dist/domain/project/index.js +19 -6
  65. package/dist/domain/project/index.js.map +1 -1
  66. package/dist/domain/project/schema.d.ts +3 -0
  67. package/dist/domain/project/schema.js +8 -0
  68. package/dist/domain/project/schema.js.map +1 -1
  69. package/dist/domain/project/service.d.ts +3 -1
  70. package/dist/domain/project/service.js +24 -14
  71. package/dist/domain/project/service.js.map +1 -1
  72. package/dist/domain/reports/index.js +3 -1
  73. package/dist/domain/reports/index.js.map +1 -1
  74. package/dist/domain/resources/index.js +6 -4
  75. package/dist/domain/resources/index.js.map +1 -1
  76. package/dist/domain/resources/service.js +66 -64
  77. package/dist/domain/resources/service.js.map +1 -1
  78. package/dist/domain/templates/index.js +5 -3
  79. package/dist/domain/templates/index.js.map +1 -1
  80. package/dist/domain/tree/index.js +3 -1
  81. package/dist/domain/tree/index.js.map +1 -1
  82. package/dist/domain/tree/service.js +0 -1
  83. package/dist/domain/tree/service.js.map +1 -1
  84. package/dist/domain/workflows/index.js +3 -1
  85. package/dist/domain/workflows/index.js.map +1 -1
  86. package/dist/export.d.ts +6 -5
  87. package/dist/export.js +16 -13
  88. package/dist/export.js.map +1 -1
  89. package/dist/index.d.ts +8 -2
  90. package/dist/index.js +12 -4
  91. package/dist/index.js.map +1 -1
  92. package/dist/main.js +29 -2
  93. package/dist/main.js.map +1 -1
  94. package/dist/middleware/auth.d.ts +40 -0
  95. package/dist/middleware/auth.js +68 -0
  96. package/dist/middleware/auth.js.map +1 -0
  97. package/dist/middleware/commandManager.d.ts +2 -2
  98. package/dist/middleware/commandManager.js +9 -11
  99. package/dist/middleware/commandManager.js.map +1 -1
  100. package/dist/public/THIRD-PARTY.txt +1212 -605
  101. package/dist/public/assets/index-Cdn_jRWy.js +720 -0
  102. package/dist/public/assets/index-ypsafPwV.css +1 -0
  103. package/dist/public/config.json +1 -0
  104. package/dist/public/images/broken_link.svg +7 -0
  105. package/dist/public/index.html +2 -2
  106. package/dist/types.d.ts +25 -0
  107. package/dist/types.js +13 -1
  108. package/dist/types.js.map +1 -1
  109. package/package.json +10 -7
  110. package/src/app.ts +37 -15
  111. package/src/auth/index.ts +17 -0
  112. package/src/auth/keycloak.ts +109 -0
  113. package/src/auth/mock.ts +38 -0
  114. package/src/auth/types.ts +18 -0
  115. package/src/domain/auth/index.ts +35 -0
  116. package/src/domain/calculations/index.ts +13 -6
  117. package/src/domain/calculations/service.ts +16 -14
  118. package/src/domain/cardTypes/index.ts +24 -16
  119. package/src/domain/cardTypes/service.ts +41 -95
  120. package/src/domain/cards/index.ts +258 -90
  121. package/src/domain/cards/lib.ts +102 -100
  122. package/src/domain/cards/presence.ts +124 -0
  123. package/src/domain/cards/schema.ts +41 -0
  124. package/src/domain/cards/service.ts +138 -93
  125. package/src/domain/connectors/index.ts +39 -0
  126. package/src/domain/connectors/service.ts +67 -0
  127. package/src/domain/fieldTypes/index.ts +23 -16
  128. package/src/domain/graphModels/index.ts +13 -6
  129. package/src/domain/graphViews/index.ts +13 -6
  130. package/src/domain/labels/index.ts +5 -2
  131. package/src/domain/labels/service.ts +2 -2
  132. package/src/domain/linkTypes/index.ts +14 -7
  133. package/src/domain/logicPrograms/index.ts +3 -0
  134. package/src/domain/mcp/index.ts +159 -0
  135. package/src/domain/project/index.ts +40 -9
  136. package/src/domain/project/schema.ts +9 -0
  137. package/src/domain/project/service.ts +37 -17
  138. package/src/domain/reports/index.ts +13 -6
  139. package/src/domain/resources/index.ts +6 -1
  140. package/src/domain/resources/service.ts +102 -97
  141. package/src/domain/templates/index.ts +31 -19
  142. package/src/domain/tree/index.ts +3 -1
  143. package/src/domain/tree/service.ts +0 -1
  144. package/src/domain/workflows/index.ts +13 -6
  145. package/src/export.ts +17 -15
  146. package/src/index.ts +18 -7
  147. package/src/main.ts +44 -2
  148. package/src/middleware/auth.ts +90 -0
  149. package/src/middleware/commandManager.ts +11 -14
  150. package/src/types.ts +27 -0
  151. package/dist/public/assets/index-CRSBseQM.css +0 -1
  152. package/dist/public/assets/index-Ca10XaMv.js +0 -164156
@@ -32,11 +32,11 @@ SOFTWARE.
32
32
 
33
33
  ---
34
34
 
35
- Name: react-dom
36
- Version: 19.2.4
35
+ Name: scheduler
36
+ Version: 0.27.0
37
37
  License: MIT
38
38
  Private: false
39
- Description: React package for working with the DOM.
39
+ Description: Cooperative scheduler for the browser environment.
40
40
  Repository: https://github.com/facebook/react.git
41
41
  Homepage: https://react.dev/
42
42
  License Copyright:
@@ -66,11 +66,11 @@ SOFTWARE.
66
66
 
67
67
  ---
68
68
 
69
- Name: scheduler
70
- Version: 0.27.0
69
+ Name: react-dom
70
+ Version: 19.2.4
71
71
  License: MIT
72
72
  Private: false
73
- Description: Cooperative scheduler for the browser environment.
73
+ Description: React package for working with the DOM.
74
74
  Repository: https://github.com/facebook/react.git
75
75
  Homepage: https://react.dev/
76
76
  License Copyright:
@@ -101,7 +101,7 @@ SOFTWARE.
101
101
  ---
102
102
 
103
103
  Name: react-router
104
- Version: 7.9.1
104
+ Version: 7.14.0
105
105
  License: MIT
106
106
  Private: false
107
107
  Description: Declarative routing for React
@@ -207,7 +207,7 @@ SOFTWARE.
207
207
  ---
208
208
 
209
209
  Name: @babel/runtime
210
- Version: 7.28.6
210
+ Version: 7.29.2
211
211
  License: MIT
212
212
  Private: false
213
213
  Description: babel's modular runtime helpers
@@ -912,7 +912,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
912
912
  ---
913
913
 
914
914
  Name: @mui/material
915
- Version: 7.3.7
915
+ Version: 7.3.8
916
916
  License: MIT
917
917
  Private: false
918
918
  Description: Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
@@ -1361,19 +1361,19 @@ SOFTWARE.
1361
1361
 
1362
1362
  ---
1363
1363
 
1364
- Name: swr
1365
- Version: 2.4.0
1364
+ Name: dequal
1365
+ Version: 2.0.3
1366
1366
  License: MIT
1367
1367
  Private: false
1368
- Description: React Hooks library for remote data fetching
1368
+ Description: A tiny (304B to 489B) utility for check for deep equality
1369
1369
  Repository: undefined
1370
- Homepage: https://swr.vercel.app
1370
+ Author: Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
1371
1371
  License Copyright:
1372
1372
  ===
1373
1373
 
1374
- MIT License
1374
+ The MIT License (MIT)
1375
1375
 
1376
- Copyright (c) 2023 Vercel, Inc.
1376
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
1377
1377
 
1378
1378
  Permission is hereby granted, free of charge, to any person obtaining a copy
1379
1379
  of this software and associated documentation files (the "Software"), to deal
@@ -1382,32 +1382,32 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1382
1382
  copies of the Software, and to permit persons to whom the Software is
1383
1383
  furnished to do so, subject to the following conditions:
1384
1384
 
1385
- The above copyright notice and this permission notice shall be included in all
1386
- copies or substantial portions of the Software.
1385
+ The above copyright notice and this permission notice shall be included in
1386
+ all copies or substantial portions of the Software.
1387
1387
 
1388
1388
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1389
1389
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1390
1390
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1391
1391
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1392
1392
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1393
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1394
- SOFTWARE.
1393
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1394
+ THE SOFTWARE.
1395
1395
 
1396
1396
  ---
1397
1397
 
1398
- Name: dequal
1399
- Version: 2.0.3
1398
+ Name: swr
1399
+ Version: 2.4.1
1400
1400
  License: MIT
1401
1401
  Private: false
1402
- Description: A tiny (304B to 489B) utility for check for deep equality
1402
+ Description: React Hooks library for remote data fetching
1403
1403
  Repository: undefined
1404
- Author: Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
1404
+ Homepage: https://swr.vercel.app
1405
1405
  License Copyright:
1406
1406
  ===
1407
1407
 
1408
- The MIT License (MIT)
1408
+ MIT License
1409
1409
 
1410
- Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
1410
+ Copyright (c) 2023 Vercel, Inc.
1411
1411
 
1412
1412
  Permission is hereby granted, free of charge, to any person obtaining a copy
1413
1413
  of this software and associated documentation files (the "Software"), to deal
@@ -1416,21 +1416,21 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1416
1416
  copies of the Software, and to permit persons to whom the Software is
1417
1417
  furnished to do so, subject to the following conditions:
1418
1418
 
1419
- The above copyright notice and this permission notice shall be included in
1420
- all copies or substantial portions of the Software.
1419
+ The above copyright notice and this permission notice shall be included in all
1420
+ copies or substantial portions of the Software.
1421
1421
 
1422
1422
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1423
1423
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1424
1424
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1425
1425
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1426
1426
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1427
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1428
- THE SOFTWARE.
1427
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1428
+ SOFTWARE.
1429
1429
 
1430
1430
  ---
1431
1431
 
1432
1432
  Name: react-hook-form
1433
- Version: 7.71.1
1433
+ Version: 7.72.1
1434
1434
  License: MIT
1435
1435
  Private: false
1436
1436
  Description: Performant, flexible and extensible forms library for React Hooks
@@ -1465,7 +1465,7 @@ SOFTWARE.
1465
1465
  ---
1466
1466
 
1467
1467
  Name: @cyberismo/data-handler
1468
- Version: 0.0.21
1468
+ Version: 0.0.23
1469
1469
  License: AGPL-3.0
1470
1470
  Private: false
1471
1471
  Description: Command handler for cards and web service
@@ -1580,20 +1580,19 @@ SOFTWARE.
1580
1580
 
1581
1581
  ---
1582
1582
 
1583
- Name: i18next
1584
- Version: 25.8.1
1583
+ Name: @lezer/common
1584
+ Version: 1.5.2
1585
1585
  License: MIT
1586
1586
  Private: false
1587
- Description: i18next internationalization framework
1588
- Repository: https://github.com/i18next/i18next.git
1589
- Homepage: https://www.i18next.com
1590
- Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
1587
+ Description: Syntax tree data structure and parser interfaces for the lezer parser
1588
+ Repository: https://github.com/lezer-parser/common.git
1589
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1591
1590
  License Copyright:
1592
1591
  ===
1593
1592
 
1594
- The MIT License (MIT)
1593
+ MIT License
1595
1594
 
1596
- Copyright (c) 2025 i18next
1595
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1597
1596
 
1598
1597
  Permission is hereby granted, free of charge, to any person obtaining a copy
1599
1598
  of this software and associated documentation files (the "Software"), to deal
@@ -1602,80 +1601,67 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1602
1601
  copies of the Software, and to permit persons to whom the Software is
1603
1602
  furnished to do so, subject to the following conditions:
1604
1603
 
1605
- The above copyright notice and this permission notice shall be included in all
1606
- copies or substantial portions of the Software.
1604
+ The above copyright notice and this permission notice shall be included in
1605
+ all copies or substantial portions of the Software.
1607
1606
 
1608
1607
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1609
1608
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1610
1609
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1611
1610
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1612
1611
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1613
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1614
- SOFTWARE.
1612
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1613
+ THE SOFTWARE.
1615
1614
 
1616
1615
  ---
1617
1616
 
1618
- Name: void-elements
1619
- Version: 3.1.0
1617
+ Name: @lezer/highlight
1618
+ Version: 1.2.3
1620
1619
  License: MIT
1621
1620
  Private: false
1622
- Description: Array of "void elements" defined by the HTML specification.
1623
- Repository: undefined
1624
- Homepage: https://github.com/jadejs/void-elements
1625
- Author: hemanth.hm
1621
+ Description: Highlighting system for Lezer parse trees
1622
+ Repository: https://github.com/lezer-parser/highlight.git
1623
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1626
1624
  License Copyright:
1627
1625
  ===
1628
1626
 
1629
- (The MIT License)
1630
-
1631
- Copyright (c) 2014 hemanth
1632
-
1633
- Permission is hereby granted, free of charge, to any person obtaining
1634
- a copy of this software and associated documentation files (the
1635
- 'Software'), to deal in the Software without restriction, including
1636
- without limitation the rights to use, copy, modify, merge, publish,
1637
- distribute, sublicense, and/or sell copies of the Software, and to
1638
- permit persons to whom the Software is furnished to do so, subject to
1639
- the following conditions:
1627
+ MIT License
1640
1628
 
1641
- The above copyright notice and this permission notice shall be
1642
- included in all copies or substantial portions of the Software.
1629
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1643
1630
 
1644
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1645
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1646
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1647
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1648
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1649
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1650
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1631
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1632
+ of this software and associated documentation files (the "Software"), to deal
1633
+ in the Software without restriction, including without limitation the rights
1634
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1635
+ copies of the Software, and to permit persons to whom the Software is
1636
+ furnished to do so, subject to the following conditions:
1651
1637
 
1652
- ---
1638
+ The above copyright notice and this permission notice shall be included in
1639
+ all copies or substantial portions of the Software.
1653
1640
 
1654
- Name: html-parse-stringify
1655
- Version: 3.0.1
1656
- License: MIT
1657
- Private: false
1658
- Description: Parses well-formed HTML (meaning all tags closed) into an AST and back. quickly.
1659
- Repository: https://github.com/henrikjoreteg/html-parse-stringify
1660
- Homepage: https://github.com/henrikjoreteg/html-parse-stringify
1661
- Author: Henrik Joreteg <henrik@joreteg.com>
1641
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1642
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1643
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1644
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1645
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1646
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1647
+ THE SOFTWARE.
1662
1648
 
1663
1649
  ---
1664
1650
 
1665
- Name: react-i18next
1666
- Version: 16.5.4
1651
+ Name: @marijn/find-cluster-break
1652
+ Version: 1.0.2
1667
1653
  License: MIT
1668
1654
  Private: false
1669
- Description: Internationalization for react done right. Using the i18next i18n ecosystem.
1670
- Repository: https://github.com/i18next/react-i18next.git
1671
- Homepage: https://github.com/i18next/react-i18next
1672
- Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
1655
+ Description: Find the position of grapheme cluster breaks in a string
1656
+ Repository: git+https://github.com/marijnh/find-cluster-break.git
1657
+ Homepage: https://github.com/marijnh/find-cluster-break#readme
1658
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1673
1659
  License Copyright:
1674
1660
  ===
1675
1661
 
1676
- The MIT License (MIT)
1662
+ MIT License
1677
1663
 
1678
- Copyright (c) 2015-present i18next
1664
+ Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin>
1679
1665
 
1680
1666
  Permission is hereby granted, free of charge, to any person obtaining a copy
1681
1667
  of this software and associated documentation files (the "Software"), to deal
@@ -1684,339 +1670,382 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1684
1670
  copies of the Software, and to permit persons to whom the Software is
1685
1671
  furnished to do so, subject to the following conditions:
1686
1672
 
1687
- The above copyright notice and this permission notice shall be included in all
1688
- copies or substantial portions of the Software.
1673
+ The above copyright notice and this permission notice shall be included in
1674
+ all copies or substantial portions of the Software.
1689
1675
 
1690
1676
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1691
1677
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1692
1678
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1693
1679
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1694
1680
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1695
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1696
- SOFTWARE.
1681
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1682
+ THE SOFTWARE.
1697
1683
 
1698
1684
  ---
1699
1685
 
1700
- Name: react-redux
1701
- Version: 9.2.0
1686
+ Name: @codemirror/state
1687
+ Version: 6.6.0
1702
1688
  License: MIT
1703
1689
  Private: false
1704
- Description: Official React bindings for Redux
1705
- Repository: undefined
1706
- Homepage: https://github.com/reduxjs/react-redux
1707
- Author: Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)
1690
+ Description: Editor state data structures for the CodeMirror code editor
1691
+ Repository: git+https://github.com/codemirror/state.git
1692
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
1708
1693
  License Copyright:
1709
1694
  ===
1710
1695
 
1711
- The MIT License (MIT)
1712
-
1713
- Copyright (c) 2015-present Dan Abramov
1714
-
1715
- Permission is hereby granted, free of charge, to any person obtaining a copy
1716
- of this software and associated documentation files (the "Software"), to deal
1717
- in the Software without restriction, including without limitation the rights
1718
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1719
- copies of the Software, and to permit persons to whom the Software is
1720
- furnished to do so, subject to the following conditions:
1721
-
1722
- The above copyright notice and this permission notice shall be included in all
1723
- copies or substantial portions of the Software.
1724
-
1725
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1726
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1727
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1728
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1729
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1730
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1731
- SOFTWARE.
1696
+ MIT License
1732
1697
 
1733
- ---
1698
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1734
1699
 
1735
- Name: react-resizable-panels
1736
- Version: 3.0.6
1737
- License: MIT
1738
- Private: false
1739
- Description: React components for resizable panel groups/layouts
1740
- Repository: git+https://github.com/bvaughn/react-resizable-panels.git
1741
- Author: Brian Vaughn <brian.david.vaughn@gmail.com>
1700
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1701
+ of this software and associated documentation files (the "Software"), to deal
1702
+ in the Software without restriction, including without limitation the rights
1703
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1704
+ copies of the Software, and to permit persons to whom the Software is
1705
+ furnished to do so, subject to the following conditions:
1706
+
1707
+ The above copyright notice and this permission notice shall be included in
1708
+ all copies or substantial portions of the Software.
1709
+
1710
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1711
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1712
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1713
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1714
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1715
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1716
+ THE SOFTWARE.
1742
1717
 
1743
1718
  ---
1744
1719
 
1745
- Name: node-html-parser
1746
- Version: 7.0.2
1720
+ Name: style-mod
1721
+ Version: 4.1.3
1747
1722
  License: MIT
1748
1723
  Private: false
1749
- Description: A very fast HTML parser, generating a simplified DOM, with basic element query support.
1750
- Repository: https://github.com/taoqf/node-fast-html-parser.git
1751
- Homepage: https://github.com/taoqf/node-fast-html-parser
1752
- Author: Xiaoyi Shi <ashi009@gmail.com>
1753
- Contributors:
1754
- taoqf <tao_qiufeng@126.com>
1755
- Ron S. <ron@nonara.com>
1724
+ Description: A minimal CSS module shim
1725
+ Repository: git+https://github.com/marijnh/style-mod.git
1726
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1756
1727
  License Copyright:
1757
1728
  ===
1758
1729
 
1759
- Copyright 2019 Tao Qiufeng
1730
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1760
1731
 
1761
- 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:
1732
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1733
+ of this software and associated documentation files (the "Software"), to deal
1734
+ in the Software without restriction, including without limitation the rights
1735
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1736
+ copies of the Software, and to permit persons to whom the Software is
1737
+ furnished to do so, subject to the following conditions:
1762
1738
 
1763
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1739
+ The above copyright notice and this permission notice shall be included in
1740
+ all copies or substantial portions of the Software.
1764
1741
 
1765
- 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.
1742
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1743
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1744
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1745
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1746
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1747
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1748
+ THE SOFTWARE.
1766
1749
 
1767
1750
  ---
1768
1751
 
1769
- Name: he
1770
- Version: 1.2.0
1752
+ Name: w3c-keyname
1753
+ Version: 2.2.8
1771
1754
  License: MIT
1772
1755
  Private: false
1773
- Description: A robust HTML entities encoder/decoder with full Unicode support.
1774
- Repository: https://github.com/mathiasbynens/he.git
1775
- Homepage: https://mths.be/he
1776
- Author: Mathias Bynens (https://mathiasbynens.be/)
1756
+ Description: Get a KeyboardEvent.key-style string from an event
1757
+ Repository: git+https://github.com/marijnh/w3c-keyname.git
1758
+ Homepage: https://github.com/marijnh/w3c-keyname#readme
1759
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1777
1760
  License Copyright:
1778
1761
  ===
1779
1762
 
1780
- Copyright Mathias Bynens <https://mathiasbynens.be/>
1763
+ Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1781
1764
 
1782
- Permission is hereby granted, free of charge, to any person obtaining
1783
- a copy of this software and associated documentation files (the
1784
- "Software"), to deal in the Software without restriction, including
1785
- without limitation the rights to use, copy, modify, merge, publish,
1786
- distribute, sublicense, and/or sell copies of the Software, and to
1787
- permit persons to whom the Software is furnished to do so, subject to
1788
- the following conditions:
1765
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1766
+ of this software and associated documentation files (the "Software"), to deal
1767
+ in the Software without restriction, including without limitation the rights
1768
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1769
+ copies of the Software, and to permit persons to whom the Software is
1770
+ furnished to do so, subject to the following conditions:
1789
1771
 
1790
- The above copyright notice and this permission notice shall be
1791
- included in all copies or substantial portions of the Software.
1772
+ The above copyright notice and this permission notice shall be included in
1773
+ all copies or substantial portions of the Software.
1792
1774
 
1793
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1794
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1795
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1796
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1797
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1798
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1799
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1775
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1776
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1777
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1778
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1779
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1780
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1781
+ THE SOFTWARE.
1800
1782
 
1801
1783
  ---
1802
1784
 
1803
- Name: css-select
1804
- Version: 5.2.2
1805
- License: BSD-2-Clause
1785
+ Name: crelt
1786
+ Version: 1.0.6
1787
+ License: MIT
1806
1788
  Private: false
1807
- Description: a CSS selector compiler/engine
1808
- Repository: git://github.com/fb55/css-select.git
1809
- Author: Felix Boehm <me@feedic.com>
1789
+ Description: Tiny DOM-element-creation utility
1790
+ Repository: git+https://github.com/marijnh/crelt.git
1791
+ Homepage: https://github.com/marijnh/crelt#readme
1792
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin>
1810
1793
  License Copyright:
1811
1794
  ===
1812
1795
 
1813
- Copyright (c) Felix Böhm
1814
- All rights reserved.
1815
-
1816
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1796
+ Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>
1817
1797
 
1818
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1798
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1799
+ of this software and associated documentation files (the "Software"), to deal
1800
+ in the Software without restriction, including without limitation the rights
1801
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1802
+ copies of the Software, and to permit persons to whom the Software is
1803
+ furnished to do so, subject to the following conditions:
1819
1804
 
1820
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1805
+ The above copyright notice and this permission notice shall be included in
1806
+ all copies or substantial portions of the Software.
1821
1807
 
1822
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1823
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1808
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1809
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1810
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1811
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1812
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1813
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1814
+ THE SOFTWARE.
1824
1815
 
1825
1816
  ---
1826
1817
 
1827
- Name: domutils
1828
- Version: 3.2.2
1829
- License: BSD-2-Clause
1818
+ Name: @codemirror/view
1819
+ Version: 6.41.0
1820
+ License: MIT
1830
1821
  Private: false
1831
- Description: Utilities for working with htmlparser2's dom
1832
- Repository: git://github.com/fb55/domutils.git
1833
- Author: Felix Boehm <me@feedic.com>
1822
+ Description: DOM view component for the CodeMirror code editor
1823
+ Repository: git+https://github.com/codemirror/view.git
1824
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
1834
1825
  License Copyright:
1835
1826
  ===
1836
1827
 
1837
- Copyright (c) Felix Böhm
1838
- All rights reserved.
1828
+ MIT License
1839
1829
 
1840
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1830
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1841
1831
 
1842
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1832
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1833
+ of this software and associated documentation files (the "Software"), to deal
1834
+ in the Software without restriction, including without limitation the rights
1835
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1836
+ copies of the Software, and to permit persons to whom the Software is
1837
+ furnished to do so, subject to the following conditions:
1843
1838
 
1844
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1839
+ The above copyright notice and this permission notice shall be included in
1840
+ all copies or substantial portions of the Software.
1845
1841
 
1846
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1847
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1842
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1843
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1844
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1845
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1846
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1847
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1848
+ THE SOFTWARE.
1848
1849
 
1849
1850
  ---
1850
1851
 
1851
- Name: domhandler
1852
- Version: 5.0.3
1853
- License: BSD-2-Clause
1852
+ Name: @codemirror/language
1853
+ Version: 6.12.3
1854
+ License: MIT
1854
1855
  Private: false
1855
- Description: Handler for htmlparser2 that turns pages into a dom
1856
- Repository: git://github.com/fb55/domhandler.git
1857
- Author: Felix Boehm <me@feedic.com>
1856
+ Description: Language support infrastructure for the CodeMirror code editor
1857
+ Repository: git+https://github.com/codemirror/language.git
1858
+ Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
1858
1859
  License Copyright:
1859
1860
  ===
1860
1861
 
1861
- Copyright (c) Felix Böhm
1862
- All rights reserved.
1862
+ MIT License
1863
1863
 
1864
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1864
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
1865
1865
 
1866
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1866
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1867
+ of this software and associated documentation files (the "Software"), to deal
1868
+ in the Software without restriction, including without limitation the rights
1869
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1870
+ copies of the Software, and to permit persons to whom the Software is
1871
+ furnished to do so, subject to the following conditions:
1867
1872
 
1868
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1873
+ The above copyright notice and this permission notice shall be included in
1874
+ all copies or substantial portions of the Software.
1869
1875
 
1870
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1871
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1876
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1877
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1878
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1879
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1880
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1881
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1882
+ THE SOFTWARE.
1872
1883
 
1873
1884
  ---
1874
1885
 
1875
- Name: domelementtype
1876
- Version: 2.3.0
1877
- License: BSD-2-Clause
1886
+ Name: @uiw/codemirror-themes
1887
+ Version: 4.25.4
1888
+ License: MIT
1878
1889
  Private: false
1879
- Description: all the types of nodes in htmlparser2's dom
1880
- Repository: git://github.com/fb55/domelementtype.git
1881
- Author: Felix Boehm <me@feedic.com>
1882
- License Copyright:
1883
- ===
1884
-
1885
- Copyright (c) Felix Böhm
1886
- All rights reserved.
1890
+ Description: Themes for CodeMirror.
1891
+ Repository: https://github.com/uiwjs/react-codemirror.git
1892
+ Homepage: https://uiwjs.github.io/react-codemirror/#/theme/doc
1893
+ Author: kenny wong <wowohoo@qq.com>
1887
1894
 
1888
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1895
+ ---
1889
1896
 
1890
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1897
+ Name: @uiw/codemirror-theme-vscode
1898
+ Version: 4.25.4
1899
+ License: MIT
1900
+ Private: false
1901
+ Description: Theme vscode for CodeMirror.
1902
+ Repository: https://github.com/uiwjs/react-codemirror.git
1903
+ Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/vscode
1904
+ Author: kenny wong <wowohoo@qq.com>
1891
1905
 
1892
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1906
+ ---
1893
1907
 
1894
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1895
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1908
+ Name: @uiw/codemirror-theme-github
1909
+ Version: 4.25.5
1910
+ License: MIT
1911
+ Private: false
1912
+ Description: Theme github for CodeMirror.
1913
+ Repository: https://github.com/uiwjs/react-codemirror.git
1914
+ Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/github/light
1915
+ Author: kenny wong <wowohoo@qq.com>
1896
1916
 
1897
1917
  ---
1898
1918
 
1899
- Name: dom-serializer
1900
- Version: 2.0.0
1919
+ Name: redux-persist
1920
+ Version: 6.0.0
1901
1921
  License: MIT
1902
1922
  Private: false
1903
- Description: render domhandler DOM nodes to a string
1904
- Repository: git://github.com/cheeriojs/dom-serializer.git
1905
- Author: Felix Boehm <me@feedic.com>
1923
+ Description: persist and rehydrate redux stores
1924
+ Repository: undefined
1925
+ Homepage: https://github.com/rt2zz/redux-persist#readme
1906
1926
  License Copyright:
1907
1927
  ===
1908
1928
 
1909
- License
1910
-
1911
- (The MIT License)
1929
+ MIT License
1912
1930
 
1913
- Copyright (c) 2014 The cheeriojs contributors
1931
+ Copyright (c) 2017 Zack Story
1914
1932
 
1915
- 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:
1933
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1934
+ of this software and associated documentation files (the "Software"), to deal
1935
+ in the Software without restriction, including without limitation the rights
1936
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1937
+ copies of the Software, and to permit persons to whom the Software is
1938
+ furnished to do so, subject to the following conditions:
1916
1939
 
1917
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1940
+ The above copyright notice and this permission notice shall be included in all
1941
+ copies or substantial portions of the Software.
1918
1942
 
1919
- 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.
1943
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1944
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1945
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1946
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1947
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1948
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1949
+ SOFTWARE.
1920
1950
 
1921
1951
  ---
1922
1952
 
1923
- Name: entities
1924
- Version: 4.5.0
1925
- License: BSD-2-Clause
1953
+ Name: i18next
1954
+ Version: 26.0.3
1955
+ License: MIT
1926
1956
  Private: false
1927
- Description: Encode & decode XML and HTML entities with ease & speed
1928
- Repository: git://github.com/fb55/entities.git
1929
- Author: Felix Boehm <me@feedic.com>
1957
+ Description: i18next internationalization framework
1958
+ Repository: https://github.com/i18next/i18next.git
1959
+ Homepage: https://www.i18next.com
1960
+ Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
1930
1961
  License Copyright:
1931
1962
  ===
1932
1963
 
1933
- Copyright (c) Felix Böhm
1934
- All rights reserved.
1935
-
1936
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1937
-
1938
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1964
+ The MIT License (MIT)
1939
1965
 
1940
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1966
+ Copyright (c) 2011-present i18next
1941
1967
 
1942
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1943
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1968
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1969
+ of this software and associated documentation files (the "Software"), to deal
1970
+ in the Software without restriction, including without limitation the rights
1971
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1972
+ copies of the Software, and to permit persons to whom the Software is
1973
+ furnished to do so, subject to the following conditions:
1944
1974
 
1945
- ---
1975
+ The above copyright notice and this permission notice shall be included in all
1976
+ copies or substantial portions of the Software.
1946
1977
 
1947
- Name: boolbase
1948
- Version: 1.0.0
1949
- License: ISC
1950
- Private: false
1951
- Description: two functions: One that returns true, one that returns false
1952
- Repository: https://github.com/fb55/boolbase
1953
- Homepage: https://github.com/fb55/boolbase
1954
- Author: Felix Boehm <me@feedic.com>
1978
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1979
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1980
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1981
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1982
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1983
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1984
+ SOFTWARE.
1955
1985
 
1956
1986
  ---
1957
1987
 
1958
- Name: css-what
1959
- Version: 6.2.2
1960
- License: BSD-2-Clause
1988
+ Name: void-elements
1989
+ Version: 3.1.0
1990
+ License: MIT
1961
1991
  Private: false
1962
- Description: a CSS selector parser
1963
- Repository: https://github.com/fb55/css-what
1964
- Author: Felix Böhm <me@feedic.com> (http://feedic.com)
1992
+ Description: Array of "void elements" defined by the HTML specification.
1993
+ Repository: undefined
1994
+ Homepage: https://github.com/jadejs/void-elements
1995
+ Author: hemanth.hm
1965
1996
  License Copyright:
1966
1997
  ===
1967
1998
 
1968
- Copyright (c) Felix Böhm
1969
- All rights reserved.
1999
+ (The MIT License)
1970
2000
 
1971
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2001
+ Copyright (c) 2014 hemanth
1972
2002
 
1973
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2003
+ Permission is hereby granted, free of charge, to any person obtaining
2004
+ a copy of this software and associated documentation files (the
2005
+ 'Software'), to deal in the Software without restriction, including
2006
+ without limitation the rights to use, copy, modify, merge, publish,
2007
+ distribute, sublicense, and/or sell copies of the Software, and to
2008
+ permit persons to whom the Software is furnished to do so, subject to
2009
+ the following conditions:
1974
2010
 
1975
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2011
+ The above copyright notice and this permission notice shall be
2012
+ included in all copies or substantial portions of the Software.
1976
2013
 
1977
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1978
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2014
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2015
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2016
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2017
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2018
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2019
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2020
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1979
2021
 
1980
2022
  ---
1981
2023
 
1982
- Name: nth-check
1983
- Version: 2.1.1
1984
- License: BSD-2-Clause
2024
+ Name: html-parse-stringify
2025
+ Version: 3.0.1
2026
+ License: MIT
1985
2027
  Private: false
1986
- Description: Parses and compiles CSS nth-checks to highly optimized functions.
1987
- Repository: https://github.com/fb55/nth-check
1988
- Homepage: https://github.com/fb55/nth-check
1989
- Author: Felix Boehm <me@feedic.com>
1990
- License Copyright:
1991
- ===
1992
-
1993
- Copyright (c) Felix Böhm
1994
- All rights reserved.
1995
-
1996
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1997
-
1998
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1999
-
2000
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2001
-
2002
- THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2003
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2028
+ Description: Parses well-formed HTML (meaning all tags closed) into an AST and back. quickly.
2029
+ Repository: https://github.com/henrikjoreteg/html-parse-stringify
2030
+ Homepage: https://github.com/henrikjoreteg/html-parse-stringify
2031
+ Author: Henrik Joreteg <henrik@joreteg.com>
2004
2032
 
2005
2033
  ---
2006
2034
 
2007
- Name: @lezer/common
2008
- Version: 1.5.0
2035
+ Name: react-i18next
2036
+ Version: 17.0.2
2009
2037
  License: MIT
2010
2038
  Private: false
2011
- Description: Syntax tree data structure and parser interfaces for the lezer parser
2012
- Repository: https://github.com/lezer-parser/common.git
2013
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2039
+ Description: Internationalization for react done right. Using the i18next i18n ecosystem.
2040
+ Repository: https://github.com/i18next/react-i18next.git
2041
+ Homepage: https://github.com/i18next/react-i18next
2042
+ Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
2014
2043
  License Copyright:
2015
2044
  ===
2016
2045
 
2017
- MIT License
2046
+ The MIT License (MIT)
2018
2047
 
2019
- Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2048
+ Copyright (c) 2015-present i18next
2020
2049
 
2021
2050
  Permission is hereby granted, free of charge, to any person obtaining a copy
2022
2051
  of this software and associated documentation files (the "Software"), to deal
@@ -2025,32 +2054,33 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2025
2054
  copies of the Software, and to permit persons to whom the Software is
2026
2055
  furnished to do so, subject to the following conditions:
2027
2056
 
2028
- The above copyright notice and this permission notice shall be included in
2029
- all copies or substantial portions of the Software.
2057
+ The above copyright notice and this permission notice shall be included in all
2058
+ copies or substantial portions of the Software.
2030
2059
 
2031
2060
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2032
2061
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2033
2062
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2034
2063
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2035
2064
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2036
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2037
- THE SOFTWARE.
2065
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2066
+ SOFTWARE.
2038
2067
 
2039
2068
  ---
2040
2069
 
2041
- Name: @lezer/highlight
2042
- Version: 1.2.3
2070
+ Name: zod
2071
+ Version: 4.3.6
2043
2072
  License: MIT
2044
2073
  Private: false
2045
- Description: Highlighting system for Lezer parse trees
2046
- Repository: https://github.com/lezer-parser/highlight.git
2047
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2074
+ Description: TypeScript-first schema declaration and validation library with static type inference
2075
+ Repository: git+https://github.com/colinhacks/zod.git
2076
+ Homepage: https://zod.dev
2077
+ Author: Colin McDonnell <zod@colinhacks.com>
2048
2078
  License Copyright:
2049
2079
  ===
2050
2080
 
2051
2081
  MIT License
2052
2082
 
2053
- Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2083
+ Copyright (c) 2025 Colin McDonnell
2054
2084
 
2055
2085
  Permission is hereby granted, free of charge, to any person obtaining a copy
2056
2086
  of this software and associated documentation files (the "Software"), to deal
@@ -2059,33 +2089,69 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2059
2089
  copies of the Software, and to permit persons to whom the Software is
2060
2090
  furnished to do so, subject to the following conditions:
2061
2091
 
2062
- The above copyright notice and this permission notice shall be included in
2063
- all copies or substantial portions of the Software.
2092
+ The above copyright notice and this permission notice shall be included in all
2093
+ copies or substantial portions of the Software.
2064
2094
 
2065
2095
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2066
2096
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2067
2097
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2068
2098
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2069
2099
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2070
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2071
- THE SOFTWARE.
2100
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2101
+ SOFTWARE.
2072
2102
 
2073
2103
  ---
2074
2104
 
2075
- Name: @marijn/find-cluster-break
2076
- Version: 1.0.2
2105
+ Name: react-redux
2106
+ Version: 9.2.0
2077
2107
  License: MIT
2078
2108
  Private: false
2079
- Description: Find the position of grapheme cluster breaks in a string
2080
- Repository: git+https://github.com/marijnh/find-cluster-break.git
2081
- Homepage: https://github.com/marijnh/find-cluster-break#readme
2082
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2109
+ Description: Official React bindings for Redux
2110
+ Repository: undefined
2111
+ Homepage: https://github.com/reduxjs/react-redux
2112
+ Author: Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)
2083
2113
  License Copyright:
2084
2114
  ===
2085
2115
 
2086
- MIT License
2116
+ The MIT License (MIT)
2117
+
2118
+ Copyright (c) 2015-present Dan Abramov
2119
+
2120
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2121
+ of this software and associated documentation files (the "Software"), to deal
2122
+ in the Software without restriction, including without limitation the rights
2123
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2124
+ copies of the Software, and to permit persons to whom the Software is
2125
+ furnished to do so, subject to the following conditions:
2126
+
2127
+ The above copyright notice and this permission notice shall be included in all
2128
+ copies or substantial portions of the Software.
2129
+
2130
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2131
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2132
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2133
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2134
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2135
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2136
+ SOFTWARE.
2087
2137
 
2088
- Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin>
2138
+ ---
2139
+
2140
+ Name: react-resizable-panels
2141
+ Version: 4.7.0
2142
+ License: MIT
2143
+ Private: false
2144
+ Repository: https://github.com/bvaughn/react-resizable-panels.git
2145
+ Homepage: https://react-resizable-panels.vercel.app/
2146
+ Author: Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)
2147
+ Contributors:
2148
+ Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)
2149
+ License Copyright:
2150
+ ===
2151
+
2152
+ The MIT License (MIT)
2153
+
2154
+ Copyright (c) 2018 Brian Vaughn
2089
2155
 
2090
2156
  Permission is hereby granted, free of charge, to any person obtaining a copy
2091
2157
  of this software and associated documentation files (the "Software"), to deal
@@ -2094,249 +2160,278 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2094
2160
  copies of the Software, and to permit persons to whom the Software is
2095
2161
  furnished to do so, subject to the following conditions:
2096
2162
 
2097
- The above copyright notice and this permission notice shall be included in
2098
- all copies or substantial portions of the Software.
2163
+ The above copyright notice and this permission notice shall be included in all
2164
+ copies or substantial portions of the Software.
2099
2165
 
2100
2166
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2101
2167
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2102
2168
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2103
2169
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2104
2170
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2105
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2106
- THE SOFTWARE.
2171
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2172
+ SOFTWARE.
2173
+
2174
+ ---
2175
+
2176
+ Name: he
2177
+ Version: 1.2.0
2178
+ License: MIT
2179
+ Private: false
2180
+ Description: A robust HTML entities encoder/decoder with full Unicode support.
2181
+ Repository: https://github.com/mathiasbynens/he.git
2182
+ Homepage: https://mths.be/he
2183
+ Author: Mathias Bynens (https://mathiasbynens.be/)
2184
+ License Copyright:
2185
+ ===
2186
+
2187
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
2188
+
2189
+ Permission is hereby granted, free of charge, to any person obtaining
2190
+ a copy of this software and associated documentation files (the
2191
+ "Software"), to deal in the Software without restriction, including
2192
+ without limitation the rights to use, copy, modify, merge, publish,
2193
+ distribute, sublicense, and/or sell copies of the Software, and to
2194
+ permit persons to whom the Software is furnished to do so, subject to
2195
+ the following conditions:
2196
+
2197
+ The above copyright notice and this permission notice shall be
2198
+ included in all copies or substantial portions of the Software.
2199
+
2200
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2201
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2202
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2203
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2204
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2205
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2206
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2207
+
2208
+ ---
2209
+
2210
+ Name: node-html-parser
2211
+ Version: 7.0.2
2212
+ License: MIT
2213
+ Private: false
2214
+ Description: A very fast HTML parser, generating a simplified DOM, with basic element query support.
2215
+ Repository: https://github.com/taoqf/node-fast-html-parser.git
2216
+ Homepage: https://github.com/taoqf/node-fast-html-parser
2217
+ Author: Xiaoyi Shi <ashi009@gmail.com>
2218
+ Contributors:
2219
+ taoqf <tao_qiufeng@126.com>
2220
+ Ron S. <ron@nonara.com>
2221
+ License Copyright:
2222
+ ===
2223
+
2224
+ Copyright 2019 Tao Qiufeng
2225
+
2226
+ 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:
2227
+
2228
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2229
+
2230
+ 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.
2231
+
2232
+ ---
2233
+
2234
+ Name: domelementtype
2235
+ Version: 2.3.0
2236
+ License: BSD-2-Clause
2237
+ Private: false
2238
+ Description: all the types of nodes in htmlparser2's dom
2239
+ Repository: git://github.com/fb55/domelementtype.git
2240
+ Author: Felix Boehm <me@feedic.com>
2241
+ License Copyright:
2242
+ ===
2243
+
2244
+ Copyright (c) Felix Böhm
2245
+ All rights reserved.
2246
+
2247
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2248
+
2249
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2250
+
2251
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2252
+
2253
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2254
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2107
2255
 
2108
2256
  ---
2109
2257
 
2110
- Name: @codemirror/state
2111
- Version: 6.5.4
2112
- License: MIT
2258
+ Name: domhandler
2259
+ Version: 5.0.3
2260
+ License: BSD-2-Clause
2113
2261
  Private: false
2114
- Description: Editor state data structures for the CodeMirror code editor
2115
- Repository: git+https://github.com/codemirror/state.git
2116
- Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
2262
+ Description: Handler for htmlparser2 that turns pages into a dom
2263
+ Repository: git://github.com/fb55/domhandler.git
2264
+ Author: Felix Boehm <me@feedic.com>
2117
2265
  License Copyright:
2118
2266
  ===
2119
2267
 
2120
- MIT License
2268
+ Copyright (c) Felix Böhm
2269
+ All rights reserved.
2121
2270
 
2122
- Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2271
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2123
2272
 
2124
- Permission is hereby granted, free of charge, to any person obtaining a copy
2125
- of this software and associated documentation files (the "Software"), to deal
2126
- in the Software without restriction, including without limitation the rights
2127
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2128
- copies of the Software, and to permit persons to whom the Software is
2129
- furnished to do so, subject to the following conditions:
2273
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2130
2274
 
2131
- The above copyright notice and this permission notice shall be included in
2132
- all copies or substantial portions of the Software.
2275
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2133
2276
 
2134
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2135
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2136
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2137
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2138
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2139
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2140
- THE SOFTWARE.
2277
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2278
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2141
2279
 
2142
2280
  ---
2143
2281
 
2144
- Name: style-mod
2145
- Version: 4.1.3
2146
- License: MIT
2282
+ Name: entities
2283
+ Version: 4.5.0
2284
+ License: BSD-2-Clause
2147
2285
  Private: false
2148
- Description: A minimal CSS module shim
2149
- Repository: git+https://github.com/marijnh/style-mod.git
2150
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2286
+ Description: Encode & decode XML and HTML entities with ease & speed
2287
+ Repository: git://github.com/fb55/entities.git
2288
+ Author: Felix Boehm <me@feedic.com>
2151
2289
  License Copyright:
2152
2290
  ===
2153
2291
 
2154
- Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2292
+ Copyright (c) Felix Böhm
2293
+ All rights reserved.
2155
2294
 
2156
- Permission is hereby granted, free of charge, to any person obtaining a copy
2157
- of this software and associated documentation files (the "Software"), to deal
2158
- in the Software without restriction, including without limitation the rights
2159
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2160
- copies of the Software, and to permit persons to whom the Software is
2161
- furnished to do so, subject to the following conditions:
2295
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2162
2296
 
2163
- The above copyright notice and this permission notice shall be included in
2164
- all copies or substantial portions of the Software.
2297
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2165
2298
 
2166
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2167
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2168
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2169
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2170
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2171
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2172
- THE SOFTWARE.
2299
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2300
+
2301
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2302
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2173
2303
 
2174
2304
  ---
2175
2305
 
2176
- Name: w3c-keyname
2177
- Version: 2.2.8
2306
+ Name: dom-serializer
2307
+ Version: 2.0.0
2178
2308
  License: MIT
2179
2309
  Private: false
2180
- Description: Get a KeyboardEvent.key-style string from an event
2181
- Repository: git+https://github.com/marijnh/w3c-keyname.git
2182
- Homepage: https://github.com/marijnh/w3c-keyname#readme
2183
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2310
+ Description: render domhandler DOM nodes to a string
2311
+ Repository: git://github.com/cheeriojs/dom-serializer.git
2312
+ Author: Felix Boehm <me@feedic.com>
2184
2313
  License Copyright:
2185
2314
  ===
2186
2315
 
2187
- Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2316
+ License
2188
2317
 
2189
- Permission is hereby granted, free of charge, to any person obtaining a copy
2190
- of this software and associated documentation files (the "Software"), to deal
2191
- in the Software without restriction, including without limitation the rights
2192
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2193
- copies of the Software, and to permit persons to whom the Software is
2194
- furnished to do so, subject to the following conditions:
2318
+ (The MIT License)
2195
2319
 
2196
- The above copyright notice and this permission notice shall be included in
2197
- all copies or substantial portions of the Software.
2320
+ Copyright (c) 2014 The cheeriojs contributors
2198
2321
 
2199
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2200
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2201
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2202
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2203
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2204
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2205
- THE SOFTWARE.
2322
+ 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:
2323
+
2324
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2325
+
2326
+ 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.
2206
2327
 
2207
2328
  ---
2208
2329
 
2209
- Name: crelt
2210
- Version: 1.0.6
2211
- License: MIT
2330
+ Name: domutils
2331
+ Version: 3.2.2
2332
+ License: BSD-2-Clause
2212
2333
  Private: false
2213
- Description: Tiny DOM-element-creation utility
2214
- Repository: git+https://github.com/marijnh/crelt.git
2215
- Homepage: https://github.com/marijnh/crelt#readme
2216
- Author: Marijn Haverbeke <marijn@haverbeke.berlin>
2334
+ Description: Utilities for working with htmlparser2's dom
2335
+ Repository: git://github.com/fb55/domutils.git
2336
+ Author: Felix Boehm <me@feedic.com>
2217
2337
  License Copyright:
2218
2338
  ===
2219
2339
 
2220
- Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>
2340
+ Copyright (c) Felix Böhm
2341
+ All rights reserved.
2221
2342
 
2222
- Permission is hereby granted, free of charge, to any person obtaining a copy
2223
- of this software and associated documentation files (the "Software"), to deal
2224
- in the Software without restriction, including without limitation the rights
2225
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2226
- copies of the Software, and to permit persons to whom the Software is
2227
- furnished to do so, subject to the following conditions:
2343
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2228
2344
 
2229
- The above copyright notice and this permission notice shall be included in
2230
- all copies or substantial portions of the Software.
2345
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2231
2346
 
2232
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2233
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2234
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2235
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2236
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2237
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2238
- THE SOFTWARE.
2347
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2348
+
2349
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2350
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2239
2351
 
2240
2352
  ---
2241
2353
 
2242
- Name: @codemirror/view
2243
- Version: 6.39.12
2244
- License: MIT
2354
+ Name: boolbase
2355
+ Version: 1.0.0
2356
+ License: ISC
2245
2357
  Private: false
2246
- Description: DOM view component for the CodeMirror code editor
2247
- Repository: git+https://github.com/codemirror/view.git
2248
- Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
2358
+ Description: two functions: One that returns true, one that returns false
2359
+ Repository: https://github.com/fb55/boolbase
2360
+ Homepage: https://github.com/fb55/boolbase
2361
+ Author: Felix Boehm <me@feedic.com>
2362
+
2363
+ ---
2364
+
2365
+ Name: css-what
2366
+ Version: 6.2.2
2367
+ License: BSD-2-Clause
2368
+ Private: false
2369
+ Description: a CSS selector parser
2370
+ Repository: https://github.com/fb55/css-what
2371
+ Author: Felix Böhm <me@feedic.com> (http://feedic.com)
2249
2372
  License Copyright:
2250
2373
  ===
2251
2374
 
2252
- MIT License
2375
+ Copyright (c) Felix Böhm
2376
+ All rights reserved.
2253
2377
 
2254
- Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2378
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2255
2379
 
2256
- Permission is hereby granted, free of charge, to any person obtaining a copy
2257
- of this software and associated documentation files (the "Software"), to deal
2258
- in the Software without restriction, including without limitation the rights
2259
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2260
- copies of the Software, and to permit persons to whom the Software is
2261
- furnished to do so, subject to the following conditions:
2380
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2262
2381
 
2263
- The above copyright notice and this permission notice shall be included in
2264
- all copies or substantial portions of the Software.
2382
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2265
2383
 
2266
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2267
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2268
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2269
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2270
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2271
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2272
- THE SOFTWARE.
2384
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2385
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2273
2386
 
2274
2387
  ---
2275
2388
 
2276
- Name: @codemirror/language
2277
- Version: 6.12.1
2278
- License: MIT
2389
+ Name: css-select
2390
+ Version: 5.2.2
2391
+ License: BSD-2-Clause
2279
2392
  Private: false
2280
- Description: Language support infrastructure for the CodeMirror code editor
2281
- Repository: https://github.com/codemirror/language.git
2282
- Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
2393
+ Description: a CSS selector compiler/engine
2394
+ Repository: git://github.com/fb55/css-select.git
2395
+ Author: Felix Boehm <me@feedic.com>
2283
2396
  License Copyright:
2284
2397
  ===
2285
2398
 
2286
- MIT License
2399
+ Copyright (c) Felix Böhm
2400
+ All rights reserved.
2287
2401
 
2288
- Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2402
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2289
2403
 
2290
- Permission is hereby granted, free of charge, to any person obtaining a copy
2291
- of this software and associated documentation files (the "Software"), to deal
2292
- in the Software without restriction, including without limitation the rights
2293
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2294
- copies of the Software, and to permit persons to whom the Software is
2295
- furnished to do so, subject to the following conditions:
2404
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2296
2405
 
2297
- The above copyright notice and this permission notice shall be included in
2298
- all copies or substantial portions of the Software.
2406
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2299
2407
 
2300
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2301
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2302
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2303
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2304
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2305
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2306
- THE SOFTWARE.
2408
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2409
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2307
2410
 
2308
2411
  ---
2309
2412
 
2310
- Name: @uiw/codemirror-themes
2311
- Version: 4.25.4
2312
- License: MIT
2413
+ Name: nth-check
2414
+ Version: 2.1.1
2415
+ License: BSD-2-Clause
2313
2416
  Private: false
2314
- Description: Themes for CodeMirror.
2315
- Repository: https://github.com/uiwjs/react-codemirror.git
2316
- Homepage: https://uiwjs.github.io/react-codemirror/#/theme/doc
2317
- Author: kenny wong <wowohoo@qq.com>
2417
+ Description: Parses and compiles CSS nth-checks to highly optimized functions.
2418
+ Repository: https://github.com/fb55/nth-check
2419
+ Homepage: https://github.com/fb55/nth-check
2420
+ Author: Felix Boehm <me@feedic.com>
2421
+ License Copyright:
2422
+ ===
2318
2423
 
2319
- ---
2424
+ Copyright (c) Felix Böhm
2425
+ All rights reserved.
2320
2426
 
2321
- Name: @uiw/codemirror-theme-vscode
2322
- Version: 4.25.4
2323
- License: MIT
2324
- Private: false
2325
- Description: Theme vscode for CodeMirror.
2326
- Repository: https://github.com/uiwjs/react-codemirror.git
2327
- Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/vscode
2328
- Author: kenny wong <wowohoo@qq.com>
2427
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2329
2428
 
2330
- ---
2429
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2331
2430
 
2332
- Name: @uiw/codemirror-theme-github
2333
- Version: 4.25.2
2334
- License: MIT
2335
- Private: false
2336
- Description: Theme github for CodeMirror.
2337
- Repository: https://github.com/uiwjs/react-codemirror.git
2338
- Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/github/light
2339
- Author: kenny wong <wowohoo@qq.com>
2431
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
2432
+
2433
+ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
2434
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2340
2435
 
2341
2436
  ---
2342
2437
 
@@ -2376,6 +2471,587 @@ SOFTWARE.
2376
2471
 
2377
2472
  ---
2378
2473
 
2474
+ Name: dompurify
2475
+ Version: 3.3.3
2476
+ License: (MPL-2.0 OR Apache-2.0)
2477
+ Private: false
2478
+ Description: DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.
2479
+ Repository: git://github.com/cure53/DOMPurify.git
2480
+ Homepage: https://github.com/cure53/DOMPurify
2481
+ Author: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
2482
+ License Copyright:
2483
+ ===
2484
+
2485
+ DOMPurify
2486
+ Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53
2487
+
2488
+ DOMPurify is free software; you can redistribute it and/or modify it under the
2489
+ terms of either:
2490
+
2491
+ a) the Apache License Version 2.0, or
2492
+ b) the Mozilla Public License Version 2.0
2493
+
2494
+ -----------------------------------------------------------------------------
2495
+
2496
+ Apache License
2497
+ Version 2.0, January 2004
2498
+ http://www.apache.org/licenses/
2499
+
2500
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2501
+
2502
+ 1. Definitions.
2503
+
2504
+ "License" shall mean the terms and conditions for use, reproduction,
2505
+ and distribution as defined by Sections 1 through 9 of this document.
2506
+
2507
+ "Licensor" shall mean the copyright owner or entity authorized by
2508
+ the copyright owner that is granting the License.
2509
+
2510
+ "Legal Entity" shall mean the union of the acting entity and all
2511
+ other entities that control, are controlled by, or are under common
2512
+ control with that entity. For the purposes of this definition,
2513
+ "control" means (i) the power, direct or indirect, to cause the
2514
+ direction or management of such entity, whether by contract or
2515
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2516
+ outstanding shares, or (iii) beneficial ownership of such entity.
2517
+
2518
+ "You" (or "Your") shall mean an individual or Legal Entity
2519
+ exercising permissions granted by this License.
2520
+
2521
+ "Source" form shall mean the preferred form for making modifications,
2522
+ including but not limited to software source code, documentation
2523
+ source, and configuration files.
2524
+
2525
+ "Object" form shall mean any form resulting from mechanical
2526
+ transformation or translation of a Source form, including but
2527
+ not limited to compiled object code, generated documentation,
2528
+ and conversions to other media types.
2529
+
2530
+ "Work" shall mean the work of authorship, whether in Source or
2531
+ Object form, made available under the License, as indicated by a
2532
+ copyright notice that is included in or attached to the work
2533
+ (an example is provided in the Appendix below).
2534
+
2535
+ "Derivative Works" shall mean any work, whether in Source or Object
2536
+ form, that is based on (or derived from) the Work and for which the
2537
+ editorial revisions, annotations, elaborations, or other modifications
2538
+ represent, as a whole, an original work of authorship. For the purposes
2539
+ of this License, Derivative Works shall not include works that remain
2540
+ separable from, or merely link (or bind by name) to the interfaces of,
2541
+ the Work and Derivative Works thereof.
2542
+
2543
+ "Contribution" shall mean any work of authorship, including
2544
+ the original version of the Work and any modifications or additions
2545
+ to that Work or Derivative Works thereof, that is intentionally
2546
+ submitted to Licensor for inclusion in the Work by the copyright owner
2547
+ or by an individual or Legal Entity authorized to submit on behalf of
2548
+ the copyright owner. For the purposes of this definition, "submitted"
2549
+ means any form of electronic, verbal, or written communication sent
2550
+ to the Licensor or its representatives, including but not limited to
2551
+ communication on electronic mailing lists, source code control systems,
2552
+ and issue tracking systems that are managed by, or on behalf of, the
2553
+ Licensor for the purpose of discussing and improving the Work, but
2554
+ excluding communication that is conspicuously marked or otherwise
2555
+ designated in writing by the copyright owner as "Not a Contribution."
2556
+
2557
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2558
+ on behalf of whom a Contribution has been received by Licensor and
2559
+ subsequently incorporated within the Work.
2560
+
2561
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2562
+ this License, each Contributor hereby grants to You a perpetual,
2563
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2564
+ copyright license to reproduce, prepare Derivative Works of,
2565
+ publicly display, publicly perform, sublicense, and distribute the
2566
+ Work and such Derivative Works in Source or Object form.
2567
+
2568
+ 3. Grant of Patent License. Subject to the terms and conditions of
2569
+ this License, each Contributor hereby grants to You a perpetual,
2570
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2571
+ (except as stated in this section) patent license to make, have made,
2572
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2573
+ where such license applies only to those patent claims licensable
2574
+ by such Contributor that are necessarily infringed by their
2575
+ Contribution(s) alone or by combination of their Contribution(s)
2576
+ with the Work to which such Contribution(s) was submitted. If You
2577
+ institute patent litigation against any entity (including a
2578
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2579
+ or a Contribution incorporated within the Work constitutes direct
2580
+ or contributory patent infringement, then any patent licenses
2581
+ granted to You under this License for that Work shall terminate
2582
+ as of the date such litigation is filed.
2583
+
2584
+ 4. Redistribution. You may reproduce and distribute copies of the
2585
+ Work or Derivative Works thereof in any medium, with or without
2586
+ modifications, and in Source or Object form, provided that You
2587
+ meet the following conditions:
2588
+
2589
+ (a) You must give any other recipients of the Work or
2590
+ Derivative Works a copy of this License; and
2591
+
2592
+ (b) You must cause any modified files to carry prominent notices
2593
+ stating that You changed the files; and
2594
+
2595
+ (c) You must retain, in the Source form of any Derivative Works
2596
+ that You distribute, all copyright, patent, trademark, and
2597
+ attribution notices from the Source form of the Work,
2598
+ excluding those notices that do not pertain to any part of
2599
+ the Derivative Works; and
2600
+
2601
+ (d) If the Work includes a "NOTICE" text file as part of its
2602
+ distribution, then any Derivative Works that You distribute must
2603
+ include a readable copy of the attribution notices contained
2604
+ within such NOTICE file, excluding those notices that do not
2605
+ pertain to any part of the Derivative Works, in at least one
2606
+ of the following places: within a NOTICE text file distributed
2607
+ as part of the Derivative Works; within the Source form or
2608
+ documentation, if provided along with the Derivative Works; or,
2609
+ within a display generated by the Derivative Works, if and
2610
+ wherever such third-party notices normally appear. The contents
2611
+ of the NOTICE file are for informational purposes only and
2612
+ do not modify the License. You may add Your own attribution
2613
+ notices within Derivative Works that You distribute, alongside
2614
+ or as an addendum to the NOTICE text from the Work, provided
2615
+ that such additional attribution notices cannot be construed
2616
+ as modifying the License.
2617
+
2618
+ You may add Your own copyright statement to Your modifications and
2619
+ may provide additional or different license terms and conditions
2620
+ for use, reproduction, or distribution of Your modifications, or
2621
+ for any such Derivative Works as a whole, provided Your use,
2622
+ reproduction, and distribution of the Work otherwise complies with
2623
+ the conditions stated in this License.
2624
+
2625
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2626
+ any Contribution intentionally submitted for inclusion in the Work
2627
+ by You to the Licensor shall be under the terms and conditions of
2628
+ this License, without any additional terms or conditions.
2629
+ Notwithstanding the above, nothing herein shall supersede or modify
2630
+ the terms of any separate license agreement you may have executed
2631
+ with Licensor regarding such Contributions.
2632
+
2633
+ 6. Trademarks. This License does not grant permission to use the trade
2634
+ names, trademarks, service marks, or product names of the Licensor,
2635
+ except as required for reasonable and customary use in describing the
2636
+ origin of the Work and reproducing the content of the NOTICE file.
2637
+
2638
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2639
+ agreed to in writing, Licensor provides the Work (and each
2640
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2641
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2642
+ implied, including, without limitation, any warranties or conditions
2643
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2644
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2645
+ appropriateness of using or redistributing the Work and assume any
2646
+ risks associated with Your exercise of permissions under this License.
2647
+
2648
+ 8. Limitation of Liability. In no event and under no legal theory,
2649
+ whether in tort (including negligence), contract, or otherwise,
2650
+ unless required by applicable law (such as deliberate and grossly
2651
+ negligent acts) or agreed to in writing, shall any Contributor be
2652
+ liable to You for damages, including any direct, indirect, special,
2653
+ incidental, or consequential damages of any character arising as a
2654
+ result of this License or out of the use or inability to use the
2655
+ Work (including but not limited to damages for loss of goodwill,
2656
+ work stoppage, computer failure or malfunction, or any and all
2657
+ other commercial damages or losses), even if such Contributor
2658
+ has been advised of the possibility of such damages.
2659
+
2660
+ 9. Accepting Warranty or Additional Liability. While redistributing
2661
+ the Work or Derivative Works thereof, You may choose to offer,
2662
+ and charge a fee for, acceptance of support, warranty, indemnity,
2663
+ or other liability obligations and/or rights consistent with this
2664
+ License. However, in accepting such obligations, You may act only
2665
+ on Your own behalf and on Your sole responsibility, not on behalf
2666
+ of any other Contributor, and only if You agree to indemnify,
2667
+ defend, and hold each Contributor harmless for any liability
2668
+ incurred by, or claims asserted against, such Contributor by reason
2669
+ of your accepting any such warranty or additional liability.
2670
+
2671
+ END OF TERMS AND CONDITIONS
2672
+
2673
+ APPENDIX: How to apply the Apache License to your work.
2674
+
2675
+ To apply the Apache License to your work, attach the following
2676
+ boilerplate notice, with the fields enclosed by brackets "[]"
2677
+ replaced with your own identifying information. (Don't include
2678
+ the brackets!) The text should be enclosed in the appropriate
2679
+ comment syntax for the file format. We also recommend that a
2680
+ file or class name and description of purpose be included on the
2681
+ same "printed page" as the copyright notice for easier
2682
+ identification within third-party archives.
2683
+
2684
+ Copyright [yyyy] [name of copyright owner]
2685
+
2686
+ Licensed under the Apache License, Version 2.0 (the "License");
2687
+ you may not use this file except in compliance with the License.
2688
+ You may obtain a copy of the License at
2689
+
2690
+ http://www.apache.org/licenses/LICENSE-2.0
2691
+
2692
+ Unless required by applicable law or agreed to in writing, software
2693
+ distributed under the License is distributed on an "AS IS" BASIS,
2694
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2695
+ See the License for the specific language governing permissions and
2696
+ limitations under the License.
2697
+
2698
+ -----------------------------------------------------------------------------
2699
+ Mozilla Public License, version 2.0
2700
+
2701
+ 1. Definitions
2702
+
2703
+ 1.1. “Contributor”
2704
+
2705
+ means each individual or legal entity that creates, contributes to the
2706
+ creation of, or owns Covered Software.
2707
+
2708
+ 1.2. “Contributor Version”
2709
+
2710
+ means the combination of the Contributions of others (if any) used by a
2711
+ Contributor and that particular Contributor’s Contribution.
2712
+
2713
+ 1.3. “Contribution”
2714
+
2715
+ means Covered Software of a particular Contributor.
2716
+
2717
+ 1.4. “Covered Software”
2718
+
2719
+ means Source Code Form to which the initial Contributor has attached the
2720
+ notice in Exhibit A, the Executable Form of such Source Code Form, and
2721
+ Modifications of such Source Code Form, in each case including portions
2722
+ thereof.
2723
+
2724
+ 1.5. “Incompatible With Secondary Licenses”
2725
+ means
2726
+
2727
+ a. that the initial Contributor has attached the notice described in
2728
+ Exhibit B to the Covered Software; or
2729
+
2730
+ b. that the Covered Software was made available under the terms of version
2731
+ 1.1 or earlier of the License, but not also under the terms of a
2732
+ Secondary License.
2733
+
2734
+ 1.6. “Executable Form”
2735
+
2736
+ means any form of the work other than Source Code Form.
2737
+
2738
+ 1.7. “Larger Work”
2739
+
2740
+ means a work that combines Covered Software with other material, in a separate
2741
+ file or files, that is not Covered Software.
2742
+
2743
+ 1.8. “License”
2744
+
2745
+ means this document.
2746
+
2747
+ 1.9. “Licensable”
2748
+
2749
+ means having the right to grant, to the maximum extent possible, whether at the
2750
+ time of the initial grant or subsequently, any and all of the rights conveyed by
2751
+ this License.
2752
+
2753
+ 1.10. “Modifications”
2754
+
2755
+ means any of the following:
2756
+
2757
+ a. any file in Source Code Form that results from an addition to, deletion
2758
+ from, or modification of the contents of Covered Software; or
2759
+
2760
+ b. any new file in Source Code Form that contains any Covered Software.
2761
+
2762
+ 1.11. “Patent Claims” of a Contributor
2763
+
2764
+ means any patent claim(s), including without limitation, method, process,
2765
+ and apparatus claims, in any patent Licensable by such Contributor that
2766
+ would be infringed, but for the grant of the License, by the making,
2767
+ using, selling, offering for sale, having made, import, or transfer of
2768
+ either its Contributions or its Contributor Version.
2769
+
2770
+ 1.12. “Secondary License”
2771
+
2772
+ means either the GNU General Public License, Version 2.0, the GNU Lesser
2773
+ General Public License, Version 2.1, the GNU Affero General Public
2774
+ License, Version 3.0, or any later versions of those licenses.
2775
+
2776
+ 1.13. “Source Code Form”
2777
+
2778
+ means the form of the work preferred for making modifications.
2779
+
2780
+ 1.14. “You” (or “Your”)
2781
+
2782
+ means an individual or a legal entity exercising rights under this
2783
+ License. For legal entities, “You” includes any entity that controls, is
2784
+ controlled by, or is under common control with You. For purposes of this
2785
+ definition, “control” means (a) the power, direct or indirect, to cause
2786
+ the direction or management of such entity, whether by contract or
2787
+ otherwise, or (b) ownership of more than fifty percent (50%) of the
2788
+ outstanding shares or beneficial ownership of such entity.
2789
+
2790
+
2791
+ 2. License Grants and Conditions
2792
+
2793
+ 2.1. Grants
2794
+
2795
+ Each Contributor hereby grants You a world-wide, royalty-free,
2796
+ non-exclusive license:
2797
+
2798
+ a. under intellectual property rights (other than patent or trademark)
2799
+ Licensable by such Contributor to use, reproduce, make available,
2800
+ modify, display, perform, distribute, and otherwise exploit its
2801
+ Contributions, either on an unmodified basis, with Modifications, or as
2802
+ part of a Larger Work; and
2803
+
2804
+ b. under Patent Claims of such Contributor to make, use, sell, offer for
2805
+ sale, have made, import, and otherwise transfer either its Contributions
2806
+ or its Contributor Version.
2807
+
2808
+ 2.2. Effective Date
2809
+
2810
+ The licenses granted in Section 2.1 with respect to any Contribution become
2811
+ effective for each Contribution on the date the Contributor first distributes
2812
+ such Contribution.
2813
+
2814
+ 2.3. Limitations on Grant Scope
2815
+
2816
+ The licenses granted in this Section 2 are the only rights granted under this
2817
+ License. No additional rights or licenses will be implied from the distribution
2818
+ or licensing of Covered Software under this License. Notwithstanding Section
2819
+ 2.1(b) above, no patent license is granted by a Contributor:
2820
+
2821
+ a. for any code that a Contributor has removed from Covered Software; or
2822
+
2823
+ b. for infringements caused by: (i) Your and any other third party’s
2824
+ modifications of Covered Software, or (ii) the combination of its
2825
+ Contributions with other software (except as part of its Contributor
2826
+ Version); or
2827
+
2828
+ c. under Patent Claims infringed by Covered Software in the absence of its
2829
+ Contributions.
2830
+
2831
+ This License does not grant any rights in the trademarks, service marks, or
2832
+ logos of any Contributor (except as may be necessary to comply with the
2833
+ notice requirements in Section 3.4).
2834
+
2835
+ 2.4. Subsequent Licenses
2836
+
2837
+ No Contributor makes additional grants as a result of Your choice to
2838
+ distribute the Covered Software under a subsequent version of this License
2839
+ (see Section 10.2) or under the terms of a Secondary License (if permitted
2840
+ under the terms of Section 3.3).
2841
+
2842
+ 2.5. Representation
2843
+
2844
+ Each Contributor represents that the Contributor believes its Contributions
2845
+ are its original creation(s) or it has sufficient rights to grant the
2846
+ rights to its Contributions conveyed by this License.
2847
+
2848
+ 2.6. Fair Use
2849
+
2850
+ This License is not intended to limit any rights You have under applicable
2851
+ copyright doctrines of fair use, fair dealing, or other equivalents.
2852
+
2853
+ 2.7. Conditions
2854
+
2855
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
2856
+ Section 2.1.
2857
+
2858
+
2859
+ 3. Responsibilities
2860
+
2861
+ 3.1. Distribution of Source Form
2862
+
2863
+ All distribution of Covered Software in Source Code Form, including any
2864
+ Modifications that You create or to which You contribute, must be under the
2865
+ terms of this License. You must inform recipients that the Source Code Form
2866
+ of the Covered Software is governed by the terms of this License, and how
2867
+ they can obtain a copy of this License. You may not attempt to alter or
2868
+ restrict the recipients’ rights in the Source Code Form.
2869
+
2870
+ 3.2. Distribution of Executable Form
2871
+
2872
+ If You distribute Covered Software in Executable Form then:
2873
+
2874
+ a. such Covered Software must also be made available in Source Code Form,
2875
+ as described in Section 3.1, and You must inform recipients of the
2876
+ Executable Form how they can obtain a copy of such Source Code Form by
2877
+ reasonable means in a timely manner, at a charge no more than the cost
2878
+ of distribution to the recipient; and
2879
+
2880
+ b. You may distribute such Executable Form under the terms of this License,
2881
+ or sublicense it under different terms, provided that the license for
2882
+ the Executable Form does not attempt to limit or alter the recipients’
2883
+ rights in the Source Code Form under this License.
2884
+
2885
+ 3.3. Distribution of a Larger Work
2886
+
2887
+ You may create and distribute a Larger Work under terms of Your choice,
2888
+ provided that You also comply with the requirements of this License for the
2889
+ Covered Software. If the Larger Work is a combination of Covered Software
2890
+ with a work governed by one or more Secondary Licenses, and the Covered
2891
+ Software is not Incompatible With Secondary Licenses, this License permits
2892
+ You to additionally distribute such Covered Software under the terms of
2893
+ such Secondary License(s), so that the recipient of the Larger Work may, at
2894
+ their option, further distribute the Covered Software under the terms of
2895
+ either this License or such Secondary License(s).
2896
+
2897
+ 3.4. Notices
2898
+
2899
+ You may not remove or alter the substance of any license notices (including
2900
+ copyright notices, patent notices, disclaimers of warranty, or limitations
2901
+ of liability) contained within the Source Code Form of the Covered
2902
+ Software, except that You may alter any license notices to the extent
2903
+ required to remedy known factual inaccuracies.
2904
+
2905
+ 3.5. Application of Additional Terms
2906
+
2907
+ You may choose to offer, and to charge a fee for, warranty, support,
2908
+ indemnity or liability obligations to one or more recipients of Covered
2909
+ Software. However, You may do so only on Your own behalf, and not on behalf
2910
+ of any Contributor. You must make it absolutely clear that any such
2911
+ warranty, support, indemnity, or liability obligation is offered by You
2912
+ alone, and You hereby agree to indemnify every Contributor for any
2913
+ liability incurred by such Contributor as a result of warranty, support,
2914
+ indemnity or liability terms You offer. You may include additional
2915
+ disclaimers of warranty and limitations of liability specific to any
2916
+ jurisdiction.
2917
+
2918
+ 4. Inability to Comply Due to Statute or Regulation
2919
+
2920
+ If it is impossible for You to comply with any of the terms of this License
2921
+ with respect to some or all of the Covered Software due to statute, judicial
2922
+ order, or regulation then You must: (a) comply with the terms of this License
2923
+ to the maximum extent possible; and (b) describe the limitations and the code
2924
+ they affect. Such description must be placed in a text file included with all
2925
+ distributions of the Covered Software under this License. Except to the
2926
+ extent prohibited by statute or regulation, such description must be
2927
+ sufficiently detailed for a recipient of ordinary skill to be able to
2928
+ understand it.
2929
+
2930
+ 5. Termination
2931
+
2932
+ 5.1. The rights granted under this License will terminate automatically if You
2933
+ fail to comply with any of its terms. However, if You become compliant,
2934
+ then the rights granted under this License from a particular Contributor
2935
+ are reinstated (a) provisionally, unless and until such Contributor
2936
+ explicitly and finally terminates Your grants, and (b) on an ongoing basis,
2937
+ if such Contributor fails to notify You of the non-compliance by some
2938
+ reasonable means prior to 60 days after You have come back into compliance.
2939
+ Moreover, Your grants from a particular Contributor are reinstated on an
2940
+ ongoing basis if such Contributor notifies You of the non-compliance by
2941
+ some reasonable means, this is the first time You have received notice of
2942
+ non-compliance with this License from such Contributor, and You become
2943
+ compliant prior to 30 days after Your receipt of the notice.
2944
+
2945
+ 5.2. If You initiate litigation against any entity by asserting a patent
2946
+ infringement claim (excluding declaratory judgment actions, counter-claims,
2947
+ and cross-claims) alleging that a Contributor Version directly or
2948
+ indirectly infringes any patent, then the rights granted to You by any and
2949
+ all Contributors for the Covered Software under Section 2.1 of this License
2950
+ shall terminate.
2951
+
2952
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
2953
+ license agreements (excluding distributors and resellers) which have been
2954
+ validly granted by You or Your distributors under this License prior to
2955
+ termination shall survive termination.
2956
+
2957
+ 6. Disclaimer of Warranty
2958
+
2959
+ Covered Software is provided under this License on an “as is” basis, without
2960
+ warranty of any kind, either expressed, implied, or statutory, including,
2961
+ without limitation, warranties that the Covered Software is free of defects,
2962
+ merchantable, fit for a particular purpose or non-infringing. The entire
2963
+ risk as to the quality and performance of the Covered Software is with You.
2964
+ Should any Covered Software prove defective in any respect, You (not any
2965
+ Contributor) assume the cost of any necessary servicing, repair, or
2966
+ correction. This disclaimer of warranty constitutes an essential part of this
2967
+ License. No use of any Covered Software is authorized under this License
2968
+ except under this disclaimer.
2969
+
2970
+ 7. Limitation of Liability
2971
+
2972
+ Under no circumstances and under no legal theory, whether tort (including
2973
+ negligence), contract, or otherwise, shall any Contributor, or anyone who
2974
+ distributes Covered Software as permitted above, be liable to You for any
2975
+ direct, indirect, special, incidental, or consequential damages of any
2976
+ character including, without limitation, damages for lost profits, loss of
2977
+ goodwill, work stoppage, computer failure or malfunction, or any and all
2978
+ other commercial damages or losses, even if such party shall have been
2979
+ informed of the possibility of such damages. This limitation of liability
2980
+ shall not apply to liability for death or personal injury resulting from such
2981
+ party’s negligence to the extent applicable law prohibits such limitation.
2982
+ Some jurisdictions do not allow the exclusion or limitation of incidental or
2983
+ consequential damages, so this exclusion and limitation may not apply to You.
2984
+
2985
+ 8. Litigation
2986
+
2987
+ Any litigation relating to this License may be brought only in the courts of
2988
+ a jurisdiction where the defendant maintains its principal place of business
2989
+ and such litigation shall be governed by laws of that jurisdiction, without
2990
+ reference to its conflict-of-law provisions. Nothing in this Section shall
2991
+ prevent a party’s ability to bring cross-claims or counter-claims.
2992
+
2993
+ 9. Miscellaneous
2994
+
2995
+ This License represents the complete agreement concerning the subject matter
2996
+ hereof. If any provision of this License is held to be unenforceable, such
2997
+ provision shall be reformed only to the extent necessary to make it
2998
+ enforceable. Any law or regulation which provides that the language of a
2999
+ contract shall be construed against the drafter shall not be used to construe
3000
+ this License against a Contributor.
3001
+
3002
+
3003
+ 10. Versions of the License
3004
+
3005
+ 10.1. New Versions
3006
+
3007
+ Mozilla Foundation is the license steward. Except as provided in Section
3008
+ 10.3, no one other than the license steward has the right to modify or
3009
+ publish new versions of this License. Each version will be given a
3010
+ distinguishing version number.
3011
+
3012
+ 10.2. Effect of New Versions
3013
+
3014
+ You may distribute the Covered Software under the terms of the version of
3015
+ the License under which You originally received the Covered Software, or
3016
+ under the terms of any subsequent version published by the license
3017
+ steward.
3018
+
3019
+ 10.3. Modified Versions
3020
+
3021
+ If you create software not governed by this License, and you want to
3022
+ create a new license for such software, you may create and use a modified
3023
+ version of this License if you rename the license and remove any
3024
+ references to the name of the license steward (except to note that such
3025
+ modified license differs from this License).
3026
+
3027
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses
3028
+ If You choose to distribute Source Code Form that is Incompatible With
3029
+ Secondary Licenses under the terms of this version of the License, the
3030
+ notice described in Exhibit B of this License must be attached.
3031
+
3032
+ Exhibit A - Source Code Form License Notice
3033
+
3034
+ This Source Code Form is subject to the
3035
+ terms of the Mozilla Public License, v.
3036
+ 2.0. If a copy of the MPL was not
3037
+ distributed with this file, You can
3038
+ obtain one at
3039
+ http://mozilla.org/MPL/2.0/.
3040
+
3041
+ If it is not possible or desirable to put the notice in a particular file, then
3042
+ You may include the notice in a location (such as a LICENSE file in a relevant
3043
+ directory) where a recipient would be likely to look for such a notice.
3044
+
3045
+ You may add additional accurate notices of copyright ownership.
3046
+
3047
+ Exhibit B - “Incompatible With Secondary Licenses” Notice
3048
+
3049
+ This Source Code Form is “Incompatible
3050
+ With Secondary Licenses”, as defined by
3051
+ the Mozilla Public License, v. 2.0.
3052
+
3053
+ ---
3054
+
2379
3055
  Name: tslib
2380
3056
  Version: 2.8.1
2381
3057
  License: 0BSD
@@ -2473,7 +3149,7 @@ THE SOFTWARE.
2473
3149
  ---
2474
3150
 
2475
3151
  Name: semver
2476
- Version: 7.7.3
3152
+ Version: 7.7.4
2477
3153
  License: ISC
2478
3154
  Private: false
2479
3155
  Description: The semantic version parser used by npm.
@@ -4550,43 +5226,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4550
5226
 
4551
5227
  ---
4552
5228
 
4553
- Name: html-react-parser
4554
- Version: 5.2.16
4555
- License: MIT
4556
- Private: false
4557
- Description: HTML to React parser.
4558
- Repository: git+https://github.com/remarkablemark/html-react-parser.git
4559
- Author: Mark <mark@remarkablemark.org> (https://remarkabl.org)
4560
- License Copyright:
4561
- ===
4562
-
4563
- The MIT License
4564
-
4565
- Copyright (c) 2016 Menglin "Mark" Xu <mark@remarkablemark.org>
4566
-
4567
- Permission is hereby granted, free of charge, to any person obtaining
4568
- a copy of this software and associated documentation files (the
4569
- "Software"), to deal in the Software without restriction, including
4570
- without limitation the rights to use, copy, modify, merge, publish,
4571
- distribute, sublicense, and/or sell copies of the Software, and to
4572
- permit persons to whom the Software is furnished to do so, subject to
4573
- the following conditions:
4574
-
4575
- The above copyright notice and this permission notice shall be
4576
- included in all copies or substantial portions of the Software.
4577
-
4578
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
4579
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4580
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
4581
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
4582
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
4583
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
4584
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4585
-
4586
- ---
4587
-
4588
5229
  Name: html-dom-parser
4589
- Version: 5.1.7
5230
+ Version: 5.1.8
4590
5231
  License: MIT
4591
5232
  Private: false
4592
5233
  Description: HTML to DOM parser.
@@ -4629,6 +5270,27 @@ Repository: https://github.com/remarkablemark/react-dom-core
4629
5270
 
4630
5271
  ---
4631
5272
 
5273
+ Name: inline-style-parser
5274
+ Version: 0.2.7
5275
+ License: MIT
5276
+ Private: false
5277
+ Description: An inline style parser.
5278
+ Repository: git+https://github.com/remarkablemark/inline-style-parser.git
5279
+ License Copyright:
5280
+ ===
5281
+
5282
+ (The MIT License)
5283
+
5284
+ Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
5285
+
5286
+ 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:
5287
+
5288
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5289
+
5290
+ 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.
5291
+
5292
+ ---
5293
+
4632
5294
  Name: style-to-object
4633
5295
  Version: 1.0.14
4634
5296
  License: MIT
@@ -4664,40 +5326,54 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4664
5326
 
4665
5327
  ---
4666
5328
 
4667
- Name: inline-style-parser
4668
- Version: 0.2.7
5329
+ Name: style-to-js
5330
+ Version: 1.1.21
4669
5331
  License: MIT
4670
5332
  Private: false
4671
- Description: An inline style parser.
4672
- Repository: git+https://github.com/remarkablemark/inline-style-parser.git
5333
+ Description: Parses CSS inline style to JavaScript object (camelCased).
5334
+ Repository: git+https://github.com/remarkablemark/style-to-js.git
5335
+ Author: Mark <mark@remarkablemark.org>
4673
5336
  License Copyright:
4674
5337
  ===
4675
5338
 
4676
- (The MIT License)
5339
+ The MIT License (MIT)
4677
5340
 
4678
- Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
5341
+ Copyright (c) 2020 Menglin "Mark" Xu <mark@remarkablemark.org>
4679
5342
 
4680
- 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:
5343
+ Permission is hereby granted, free of charge, to any person obtaining
5344
+ a copy of this software and associated documentation files (the
5345
+ "Software"), to deal in the Software without restriction, including
5346
+ without limitation the rights to use, copy, modify, merge, publish,
5347
+ distribute, sublicense, and/or sell copies of the Software, and to
5348
+ permit persons to whom the Software is furnished to do so, subject to
5349
+ the following conditions:
4681
5350
 
4682
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5351
+ The above copyright notice and this permission notice shall be
5352
+ included in all copies or substantial portions of the Software.
4683
5353
 
4684
- 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.
5354
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
5355
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
5356
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
5357
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
5358
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
5359
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
5360
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4685
5361
 
4686
5362
  ---
4687
5363
 
4688
- Name: style-to-js
4689
- Version: 1.1.21
5364
+ Name: html-react-parser
5365
+ Version: 5.2.17
4690
5366
  License: MIT
4691
5367
  Private: false
4692
- Description: Parses CSS inline style to JavaScript object (camelCased).
4693
- Repository: git+https://github.com/remarkablemark/style-to-js.git
4694
- Author: Mark <mark@remarkablemark.org>
5368
+ Description: HTML to React parser.
5369
+ Repository: git+https://github.com/remarkablemark/html-react-parser.git
5370
+ Author: Mark <mark@remarkablemark.org> (https://remarkabl.org)
4695
5371
  License Copyright:
4696
5372
  ===
4697
5373
 
4698
- The MIT License (MIT)
5374
+ The MIT License
4699
5375
 
4700
- Copyright (c) 2020 Menglin "Mark" Xu <mark@remarkablemark.org>
5376
+ Copyright (c) 2016 Menglin "Mark" Xu <mark@remarkablemark.org>
4701
5377
 
4702
5378
  Permission is hereby granted, free of charge, to any person obtaining
4703
5379
  a copy of this software and associated documentation files (the
@@ -4764,11 +5440,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4764
5440
  ---
4765
5441
 
4766
5442
  Name: @codemirror/commands
4767
- Version: 6.10.1
5443
+ Version: 6.10.3
4768
5444
  License: MIT
4769
5445
  Private: false
4770
5446
  Description: Collection of editing commands for the CodeMirror code editor
4771
- Repository: https://github.com/codemirror/commands.git
5447
+ Repository: git+https://github.com/codemirror/commands.git
4772
5448
  Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
4773
5449
  License Copyright:
4774
5450
  ===
@@ -5058,75 +5734,6 @@ furnished to do so, subject to the following conditions:
5058
5734
  The above copyright notice and this permission notice shall be included in all
5059
5735
  copies or substantial portions of the Software.
5060
5736
 
5061
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5062
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5063
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5064
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5065
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5066
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5067
- SOFTWARE.
5068
-
5069
- ---
5070
-
5071
- Name: zod
5072
- Version: 4.3.6
5073
- License: MIT
5074
- Private: false
5075
- Description: TypeScript-first schema declaration and validation library with static type inference
5076
- Repository: git+https://github.com/colinhacks/zod.git
5077
- Homepage: https://zod.dev
5078
- Author: Colin McDonnell <zod@colinhacks.com>
5079
- License Copyright:
5080
- ===
5081
-
5082
- MIT License
5083
-
5084
- Copyright (c) 2025 Colin McDonnell
5085
-
5086
- Permission is hereby granted, free of charge, to any person obtaining a copy
5087
- of this software and associated documentation files (the "Software"), to deal
5088
- in the Software without restriction, including without limitation the rights
5089
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5090
- copies of the Software, and to permit persons to whom the Software is
5091
- furnished to do so, subject to the following conditions:
5092
-
5093
- The above copyright notice and this permission notice shall be included in all
5094
- copies or substantial portions of the Software.
5095
-
5096
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5097
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5098
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5099
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5100
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5101
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5102
- SOFTWARE.
5103
-
5104
- ---
5105
-
5106
- Name: redux-persist
5107
- Version: 6.0.0
5108
- License: MIT
5109
- Private: false
5110
- Description: persist and rehydrate redux stores
5111
- Repository: undefined
5112
- Homepage: https://github.com/rt2zz/redux-persist#readme
5113
- License Copyright:
5114
- ===
5115
-
5116
- MIT License
5117
-
5118
- Copyright (c) 2017 Zack Story
5119
-
5120
- Permission is hereby granted, free of charge, to any person obtaining a copy
5121
- of this software and associated documentation files (the "Software"), to deal
5122
- in the Software without restriction, including without limitation the rights
5123
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5124
- copies of the Software, and to permit persons to whom the Software is
5125
- furnished to do so, subject to the following conditions:
5126
-
5127
- The above copyright notice and this permission notice shall be included in all
5128
- copies or substantial portions of the Software.
5129
-
5130
5737
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5131
5738
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5132
5739
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE