@cyberismo/backend 0.0.22 → 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.
- package/dist/app.js +3 -1
- package/dist/app.js.map +1 -1
- package/dist/domain/cards/index.js +107 -12
- package/dist/domain/cards/index.js.map +1 -1
- package/dist/domain/cards/lib.js +1 -4
- package/dist/domain/cards/lib.js.map +1 -1
- package/dist/domain/cards/presence.d.ts +50 -0
- package/dist/domain/cards/presence.js +93 -0
- package/dist/domain/cards/presence.js.map +1 -0
- package/dist/domain/cards/schema.d.ts +47 -0
- package/dist/domain/cards/schema.js +37 -0
- package/dist/domain/cards/schema.js.map +1 -0
- package/dist/domain/cards/service.d.ts +5 -2
- package/dist/domain/cards/service.js +21 -4
- package/dist/domain/cards/service.js.map +1 -1
- package/dist/domain/connectors/index.d.ts +15 -0
- package/dist/domain/connectors/index.js +37 -0
- package/dist/domain/connectors/index.js.map +1 -0
- package/dist/domain/connectors/service.d.ts +23 -0
- package/dist/domain/connectors/service.js +46 -0
- package/dist/domain/connectors/service.js.map +1 -0
- package/dist/domain/project/index.js +12 -1
- package/dist/domain/project/index.js.map +1 -1
- package/dist/domain/project/schema.d.ts +3 -0
- package/dist/domain/project/schema.js +8 -0
- package/dist/domain/project/schema.js.map +1 -1
- package/dist/domain/project/service.d.ts +3 -1
- package/dist/domain/project/service.js +6 -0
- package/dist/domain/project/service.js.map +1 -1
- package/dist/domain/tree/service.js +0 -1
- package/dist/domain/tree/service.js.map +1 -1
- package/dist/export.js +1 -2
- package/dist/export.js.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/public/THIRD-PARTY.txt +1196 -615
- package/dist/public/assets/index-Cdn_jRWy.js +720 -0
- package/dist/public/assets/index-ypsafPwV.css +1 -0
- package/dist/public/images/broken_link.svg +7 -0
- package/dist/public/index.html +2 -2
- package/package.json +5 -5
- package/src/app.ts +3 -1
- package/src/domain/cards/index.ts +198 -48
- package/src/domain/cards/lib.ts +2 -5
- package/src/domain/cards/presence.ts +124 -0
- package/src/domain/cards/schema.ts +41 -0
- package/src/domain/cards/service.ts +65 -4
- package/src/domain/connectors/index.ts +39 -0
- package/src/domain/connectors/service.ts +67 -0
- package/src/domain/project/index.ts +23 -1
- package/src/domain/project/schema.ts +9 -0
- package/src/domain/project/service.ts +17 -1
- package/src/domain/tree/service.ts +0 -1
- package/src/export.ts +1 -2
- package/src/index.ts +8 -4
- package/dist/public/assets/index-B_lh6qtv.css +0 -1
- package/dist/public/assets/index-CEol8Bfi.js +0 -164949
|
@@ -32,11 +32,11 @@ SOFTWARE.
|
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
-
Name:
|
|
36
|
-
Version:
|
|
35
|
+
Name: scheduler
|
|
36
|
+
Version: 0.27.0
|
|
37
37
|
License: MIT
|
|
38
38
|
Private: false
|
|
39
|
-
Description:
|
|
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:
|
|
70
|
-
Version:
|
|
69
|
+
Name: react-dom
|
|
70
|
+
Version: 19.2.4
|
|
71
71
|
License: MIT
|
|
72
72
|
Private: false
|
|
73
|
-
Description:
|
|
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.
|
|
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.
|
|
210
|
+
Version: 7.29.2
|
|
211
211
|
License: MIT
|
|
212
212
|
Private: false
|
|
213
213
|
Description: babel's modular runtime helpers
|
|
@@ -1361,19 +1361,19 @@ SOFTWARE.
|
|
|
1361
1361
|
|
|
1362
1362
|
---
|
|
1363
1363
|
|
|
1364
|
-
Name:
|
|
1365
|
-
Version: 2.
|
|
1364
|
+
Name: dequal
|
|
1365
|
+
Version: 2.0.3
|
|
1366
1366
|
License: MIT
|
|
1367
1367
|
Private: false
|
|
1368
|
-
Description:
|
|
1368
|
+
Description: A tiny (304B to 489B) utility for check for deep equality
|
|
1369
1369
|
Repository: undefined
|
|
1370
|
-
|
|
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)
|
|
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
|
|
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
|
|
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:
|
|
1399
|
-
Version: 2.
|
|
1398
|
+
Name: swr
|
|
1399
|
+
Version: 2.4.1
|
|
1400
1400
|
License: MIT
|
|
1401
1401
|
Private: false
|
|
1402
|
-
Description:
|
|
1402
|
+
Description: React Hooks library for remote data fetching
|
|
1403
1403
|
Repository: undefined
|
|
1404
|
-
|
|
1404
|
+
Homepage: https://swr.vercel.app
|
|
1405
1405
|
License Copyright:
|
|
1406
1406
|
===
|
|
1407
1407
|
|
|
1408
|
-
|
|
1408
|
+
MIT License
|
|
1409
1409
|
|
|
1410
|
-
Copyright (c)
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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:
|
|
1584
|
-
Version:
|
|
1583
|
+
Name: @lezer/common
|
|
1584
|
+
Version: 1.5.2
|
|
1585
1585
|
License: MIT
|
|
1586
1586
|
Private: false
|
|
1587
|
-
Description:
|
|
1588
|
-
Repository: https://github.com/
|
|
1589
|
-
|
|
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
|
-
|
|
1593
|
+
MIT License
|
|
1595
1594
|
|
|
1596
|
-
Copyright (
|
|
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
|
|
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
|
|
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:
|
|
1619
|
-
Version:
|
|
1617
|
+
Name: @lezer/highlight
|
|
1618
|
+
Version: 1.2.3
|
|
1620
1619
|
License: MIT
|
|
1621
1620
|
Private: false
|
|
1622
|
-
Description:
|
|
1623
|
-
Repository:
|
|
1624
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
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
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
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:
|
|
1666
|
-
Version:
|
|
1651
|
+
Name: @marijn/find-cluster-break
|
|
1652
|
+
Version: 1.0.2
|
|
1667
1653
|
License: MIT
|
|
1668
1654
|
Private: false
|
|
1669
|
-
Description:
|
|
1670
|
-
Repository: https://github.com/
|
|
1671
|
-
Homepage: https://github.com/
|
|
1672
|
-
Author:
|
|
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
|
-
|
|
1662
|
+
MIT License
|
|
1677
1663
|
|
|
1678
|
-
Copyright (
|
|
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,69 +1670,32 @@ 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
|
|
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
|
|
1696
|
-
SOFTWARE.
|
|
1697
|
-
|
|
1698
|
-
---
|
|
1699
|
-
|
|
1700
|
-
Name: react-redux
|
|
1701
|
-
Version: 9.2.0
|
|
1702
|
-
License: MIT
|
|
1703
|
-
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)
|
|
1708
|
-
License Copyright:
|
|
1709
|
-
===
|
|
1710
|
-
|
|
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.
|
|
1681
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1682
|
+
THE SOFTWARE.
|
|
1732
1683
|
|
|
1733
1684
|
---
|
|
1734
1685
|
|
|
1735
|
-
Name:
|
|
1736
|
-
Version:
|
|
1686
|
+
Name: @codemirror/state
|
|
1687
|
+
Version: 6.6.0
|
|
1737
1688
|
License: MIT
|
|
1738
1689
|
Private: false
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
Author:
|
|
1742
|
-
Contributors:
|
|
1743
|
-
Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)
|
|
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)
|
|
1744
1693
|
License Copyright:
|
|
1745
1694
|
===
|
|
1746
1695
|
|
|
1747
|
-
|
|
1696
|
+
MIT License
|
|
1748
1697
|
|
|
1749
|
-
Copyright (
|
|
1698
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1750
1699
|
|
|
1751
1700
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1752
1701
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1755,294 +1704,348 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
1755
1704
|
copies of the Software, and to permit persons to whom the Software is
|
|
1756
1705
|
furnished to do so, subject to the following conditions:
|
|
1757
1706
|
|
|
1758
|
-
The above copyright notice and this permission notice shall be included in
|
|
1759
|
-
copies or substantial portions of the Software.
|
|
1707
|
+
The above copyright notice and this permission notice shall be included in
|
|
1708
|
+
all copies or substantial portions of the Software.
|
|
1760
1709
|
|
|
1761
1710
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1762
1711
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1763
1712
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1764
1713
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1765
1714
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1766
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1767
|
-
SOFTWARE.
|
|
1715
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1716
|
+
THE SOFTWARE.
|
|
1768
1717
|
|
|
1769
1718
|
---
|
|
1770
1719
|
|
|
1771
|
-
Name:
|
|
1772
|
-
Version:
|
|
1720
|
+
Name: style-mod
|
|
1721
|
+
Version: 4.1.3
|
|
1773
1722
|
License: MIT
|
|
1774
1723
|
Private: false
|
|
1775
|
-
Description: A
|
|
1776
|
-
Repository: https://github.com/
|
|
1777
|
-
|
|
1778
|
-
Author: Xiaoyi Shi <ashi009@gmail.com>
|
|
1779
|
-
Contributors:
|
|
1780
|
-
taoqf <tao_qiufeng@126.com>
|
|
1781
|
-
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>
|
|
1782
1727
|
License Copyright:
|
|
1783
1728
|
===
|
|
1784
1729
|
|
|
1785
|
-
Copyright
|
|
1730
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1786
1731
|
|
|
1787
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
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:
|
|
1788
1738
|
|
|
1789
|
-
The above copyright notice and this permission notice shall be included in
|
|
1739
|
+
The above copyright notice and this permission notice shall be included in
|
|
1740
|
+
all copies or substantial portions of the Software.
|
|
1790
1741
|
|
|
1791
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
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.
|
|
1792
1749
|
|
|
1793
1750
|
---
|
|
1794
1751
|
|
|
1795
|
-
Name:
|
|
1796
|
-
Version:
|
|
1752
|
+
Name: w3c-keyname
|
|
1753
|
+
Version: 2.2.8
|
|
1797
1754
|
License: MIT
|
|
1798
1755
|
Private: false
|
|
1799
|
-
Description:
|
|
1800
|
-
Repository: https://github.com/
|
|
1801
|
-
Homepage: https://
|
|
1802
|
-
Author:
|
|
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>
|
|
1803
1760
|
License Copyright:
|
|
1804
1761
|
===
|
|
1805
1762
|
|
|
1806
|
-
Copyright
|
|
1763
|
+
Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1807
1764
|
|
|
1808
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
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:
|
|
1815
1771
|
|
|
1816
|
-
The above copyright notice and this permission notice shall be
|
|
1817
|
-
|
|
1772
|
+
The above copyright notice and this permission notice shall be included in
|
|
1773
|
+
all copies or substantial portions of the Software.
|
|
1818
1774
|
|
|
1819
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
OF
|
|
1825
|
-
|
|
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.
|
|
1826
1782
|
|
|
1827
1783
|
---
|
|
1828
1784
|
|
|
1829
|
-
Name:
|
|
1830
|
-
Version:
|
|
1831
|
-
License:
|
|
1785
|
+
Name: crelt
|
|
1786
|
+
Version: 1.0.6
|
|
1787
|
+
License: MIT
|
|
1832
1788
|
Private: false
|
|
1833
|
-
Description:
|
|
1834
|
-
Repository: git://github.com/
|
|
1835
|
-
|
|
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>
|
|
1836
1793
|
License Copyright:
|
|
1837
1794
|
===
|
|
1838
1795
|
|
|
1839
|
-
Copyright (
|
|
1840
|
-
All rights reserved.
|
|
1841
|
-
|
|
1842
|
-
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>
|
|
1843
1797
|
|
|
1844
|
-
|
|
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:
|
|
1845
1804
|
|
|
1846
|
-
|
|
1805
|
+
The above copyright notice and this permission notice shall be included in
|
|
1806
|
+
all copies or substantial portions of the Software.
|
|
1847
1807
|
|
|
1848
|
-
|
|
1849
|
-
|
|
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.
|
|
1850
1815
|
|
|
1851
1816
|
---
|
|
1852
1817
|
|
|
1853
|
-
Name:
|
|
1854
|
-
Version:
|
|
1855
|
-
License:
|
|
1818
|
+
Name: @codemirror/view
|
|
1819
|
+
Version: 6.41.0
|
|
1820
|
+
License: MIT
|
|
1856
1821
|
Private: false
|
|
1857
|
-
Description:
|
|
1858
|
-
Repository: git://github.com/
|
|
1859
|
-
Author:
|
|
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)
|
|
1860
1825
|
License Copyright:
|
|
1861
1826
|
===
|
|
1862
1827
|
|
|
1863
|
-
|
|
1864
|
-
All rights reserved.
|
|
1828
|
+
MIT License
|
|
1865
1829
|
|
|
1866
|
-
|
|
1830
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1867
1831
|
|
|
1868
|
-
|
|
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:
|
|
1869
1838
|
|
|
1870
|
-
|
|
1839
|
+
The above copyright notice and this permission notice shall be included in
|
|
1840
|
+
all copies or substantial portions of the Software.
|
|
1871
1841
|
|
|
1872
|
-
|
|
1873
|
-
|
|
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.
|
|
1874
1849
|
|
|
1875
1850
|
---
|
|
1876
1851
|
|
|
1877
|
-
Name:
|
|
1878
|
-
Version:
|
|
1879
|
-
License:
|
|
1852
|
+
Name: @codemirror/language
|
|
1853
|
+
Version: 6.12.3
|
|
1854
|
+
License: MIT
|
|
1880
1855
|
Private: false
|
|
1881
|
-
Description:
|
|
1882
|
-
Repository: git://github.com/
|
|
1883
|
-
Author:
|
|
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)
|
|
1884
1859
|
License Copyright:
|
|
1885
1860
|
===
|
|
1886
1861
|
|
|
1887
|
-
|
|
1888
|
-
All rights reserved.
|
|
1862
|
+
MIT License
|
|
1889
1863
|
|
|
1890
|
-
|
|
1864
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1891
1865
|
|
|
1892
|
-
|
|
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:
|
|
1893
1872
|
|
|
1894
|
-
|
|
1873
|
+
The above copyright notice and this permission notice shall be included in
|
|
1874
|
+
all copies or substantial portions of the Software.
|
|
1895
1875
|
|
|
1896
|
-
|
|
1897
|
-
|
|
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.
|
|
1898
1883
|
|
|
1899
1884
|
---
|
|
1900
1885
|
|
|
1901
|
-
Name:
|
|
1902
|
-
Version:
|
|
1903
|
-
License:
|
|
1886
|
+
Name: @uiw/codemirror-themes
|
|
1887
|
+
Version: 4.25.4
|
|
1888
|
+
License: MIT
|
|
1904
1889
|
Private: false
|
|
1905
|
-
Description:
|
|
1906
|
-
Repository:
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
===
|
|
1910
|
-
|
|
1911
|
-
Copyright (c) Felix Böhm
|
|
1912
|
-
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>
|
|
1913
1894
|
|
|
1914
|
-
|
|
1895
|
+
---
|
|
1915
1896
|
|
|
1916
|
-
|
|
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>
|
|
1917
1905
|
|
|
1918
|
-
|
|
1906
|
+
---
|
|
1919
1907
|
|
|
1920
|
-
|
|
1921
|
-
|
|
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>
|
|
1922
1916
|
|
|
1923
1917
|
---
|
|
1924
1918
|
|
|
1925
|
-
Name:
|
|
1926
|
-
Version:
|
|
1919
|
+
Name: redux-persist
|
|
1920
|
+
Version: 6.0.0
|
|
1927
1921
|
License: MIT
|
|
1928
1922
|
Private: false
|
|
1929
|
-
Description:
|
|
1930
|
-
Repository:
|
|
1931
|
-
|
|
1923
|
+
Description: persist and rehydrate redux stores
|
|
1924
|
+
Repository: undefined
|
|
1925
|
+
Homepage: https://github.com/rt2zz/redux-persist#readme
|
|
1932
1926
|
License Copyright:
|
|
1933
1927
|
===
|
|
1934
1928
|
|
|
1935
|
-
License
|
|
1936
|
-
|
|
1937
|
-
(The MIT License)
|
|
1929
|
+
MIT License
|
|
1938
1930
|
|
|
1939
|
-
Copyright (c)
|
|
1931
|
+
Copyright (c) 2017 Zack Story
|
|
1940
1932
|
|
|
1941
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
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:
|
|
1942
1939
|
|
|
1943
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1940
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1941
|
+
copies or substantial portions of the Software.
|
|
1944
1942
|
|
|
1945
|
-
THE SOFTWARE IS PROVIDED
|
|
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.
|
|
1946
1950
|
|
|
1947
1951
|
---
|
|
1948
1952
|
|
|
1949
|
-
Name:
|
|
1950
|
-
Version:
|
|
1951
|
-
License:
|
|
1953
|
+
Name: i18next
|
|
1954
|
+
Version: 26.0.3
|
|
1955
|
+
License: MIT
|
|
1952
1956
|
Private: false
|
|
1953
|
-
Description:
|
|
1954
|
-
Repository:
|
|
1955
|
-
|
|
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)
|
|
1956
1961
|
License Copyright:
|
|
1957
1962
|
===
|
|
1958
1963
|
|
|
1959
|
-
|
|
1960
|
-
All rights reserved.
|
|
1961
|
-
|
|
1962
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
1963
|
-
|
|
1964
|
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
1964
|
+
The MIT License (MIT)
|
|
1965
1965
|
|
|
1966
|
-
|
|
1966
|
+
Copyright (c) 2011-present i18next
|
|
1967
1967
|
|
|
1968
|
-
|
|
1969
|
-
|
|
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:
|
|
1970
1974
|
|
|
1971
|
-
|
|
1975
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1976
|
+
copies or substantial portions of the Software.
|
|
1972
1977
|
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
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.
|
|
1981
1985
|
|
|
1982
1986
|
---
|
|
1983
1987
|
|
|
1984
|
-
Name:
|
|
1985
|
-
Version:
|
|
1986
|
-
License:
|
|
1988
|
+
Name: void-elements
|
|
1989
|
+
Version: 3.1.0
|
|
1990
|
+
License: MIT
|
|
1987
1991
|
Private: false
|
|
1988
|
-
Description:
|
|
1989
|
-
Repository:
|
|
1990
|
-
|
|
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
|
|
1991
1996
|
License Copyright:
|
|
1992
1997
|
===
|
|
1993
1998
|
|
|
1994
|
-
|
|
1995
|
-
All rights reserved.
|
|
1999
|
+
(The MIT License)
|
|
1996
2000
|
|
|
1997
|
-
|
|
2001
|
+
Copyright (c) 2014 hemanth
|
|
1998
2002
|
|
|
1999
|
-
|
|
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:
|
|
2000
2010
|
|
|
2001
|
-
|
|
2011
|
+
The above copyright notice and this permission notice shall be
|
|
2012
|
+
included in all copies or substantial portions of the Software.
|
|
2002
2013
|
|
|
2003
|
-
|
|
2004
|
-
|
|
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.
|
|
2005
2021
|
|
|
2006
2022
|
---
|
|
2007
2023
|
|
|
2008
|
-
Name:
|
|
2009
|
-
Version:
|
|
2010
|
-
License:
|
|
2024
|
+
Name: html-parse-stringify
|
|
2025
|
+
Version: 3.0.1
|
|
2026
|
+
License: MIT
|
|
2011
2027
|
Private: false
|
|
2012
|
-
Description: Parses
|
|
2013
|
-
Repository: https://github.com/
|
|
2014
|
-
Homepage: https://github.com/
|
|
2015
|
-
Author:
|
|
2016
|
-
License Copyright:
|
|
2017
|
-
===
|
|
2018
|
-
|
|
2019
|
-
Copyright (c) Felix Böhm
|
|
2020
|
-
All rights reserved.
|
|
2021
|
-
|
|
2022
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2023
|
-
|
|
2024
|
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
2025
|
-
|
|
2026
|
-
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.
|
|
2027
|
-
|
|
2028
|
-
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,
|
|
2029
|
-
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>
|
|
2030
2032
|
|
|
2031
2033
|
---
|
|
2032
2034
|
|
|
2033
|
-
Name:
|
|
2034
|
-
Version:
|
|
2035
|
+
Name: react-i18next
|
|
2036
|
+
Version: 17.0.2
|
|
2035
2037
|
License: MIT
|
|
2036
2038
|
Private: false
|
|
2037
|
-
Description:
|
|
2038
|
-
Repository: https://github.com/
|
|
2039
|
-
|
|
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)
|
|
2040
2043
|
License Copyright:
|
|
2041
2044
|
===
|
|
2042
2045
|
|
|
2043
|
-
MIT License
|
|
2046
|
+
The MIT License (MIT)
|
|
2044
2047
|
|
|
2045
|
-
Copyright (
|
|
2048
|
+
Copyright (c) 2015-present i18next
|
|
2046
2049
|
|
|
2047
2050
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2048
2051
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2051,32 +2054,33 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
2051
2054
|
copies of the Software, and to permit persons to whom the Software is
|
|
2052
2055
|
furnished to do so, subject to the following conditions:
|
|
2053
2056
|
|
|
2054
|
-
The above copyright notice and this permission notice shall be included in
|
|
2055
|
-
|
|
2057
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2058
|
+
copies or substantial portions of the Software.
|
|
2056
2059
|
|
|
2057
2060
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2058
2061
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2059
2062
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2060
2063
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2061
2064
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2062
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2063
|
-
|
|
2065
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2066
|
+
SOFTWARE.
|
|
2064
2067
|
|
|
2065
2068
|
---
|
|
2066
2069
|
|
|
2067
|
-
Name:
|
|
2068
|
-
Version:
|
|
2070
|
+
Name: zod
|
|
2071
|
+
Version: 4.3.6
|
|
2069
2072
|
License: MIT
|
|
2070
2073
|
Private: false
|
|
2071
|
-
Description:
|
|
2072
|
-
Repository: https://github.com/
|
|
2073
|
-
|
|
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>
|
|
2074
2078
|
License Copyright:
|
|
2075
2079
|
===
|
|
2076
2080
|
|
|
2077
2081
|
MIT License
|
|
2078
2082
|
|
|
2079
|
-
Copyright (
|
|
2083
|
+
Copyright (c) 2025 Colin McDonnell
|
|
2080
2084
|
|
|
2081
2085
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2082
2086
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2085,33 +2089,69 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
2085
2089
|
copies of the Software, and to permit persons to whom the Software is
|
|
2086
2090
|
furnished to do so, subject to the following conditions:
|
|
2087
2091
|
|
|
2088
|
-
The above copyright notice and this permission notice shall be included in
|
|
2089
|
-
|
|
2092
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2093
|
+
copies or substantial portions of the Software.
|
|
2090
2094
|
|
|
2091
2095
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2092
2096
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2093
2097
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2094
2098
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2095
2099
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2096
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2097
|
-
|
|
2100
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2101
|
+
SOFTWARE.
|
|
2098
2102
|
|
|
2099
2103
|
---
|
|
2100
2104
|
|
|
2101
|
-
Name:
|
|
2102
|
-
Version:
|
|
2105
|
+
Name: react-redux
|
|
2106
|
+
Version: 9.2.0
|
|
2103
2107
|
License: MIT
|
|
2104
2108
|
Private: false
|
|
2105
|
-
Description:
|
|
2106
|
-
Repository:
|
|
2107
|
-
Homepage: https://github.com/
|
|
2108
|
-
Author:
|
|
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)
|
|
2109
2113
|
License Copyright:
|
|
2110
2114
|
===
|
|
2111
2115
|
|
|
2112
|
-
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.
|
|
2113
2137
|
|
|
2114
|
-
|
|
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
|
|
2115
2155
|
|
|
2116
2156
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2117
2157
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2120,249 +2160,278 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
2120
2160
|
copies of the Software, and to permit persons to whom the Software is
|
|
2121
2161
|
furnished to do so, subject to the following conditions:
|
|
2122
2162
|
|
|
2123
|
-
The above copyright notice and this permission notice shall be included in
|
|
2124
|
-
|
|
2163
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2164
|
+
copies or substantial portions of the Software.
|
|
2125
2165
|
|
|
2126
2166
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2127
2167
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2128
2168
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2129
2169
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2130
2170
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2131
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2132
|
-
|
|
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.
|
|
2133
2255
|
|
|
2134
2256
|
---
|
|
2135
2257
|
|
|
2136
|
-
Name:
|
|
2137
|
-
Version:
|
|
2138
|
-
License:
|
|
2258
|
+
Name: domhandler
|
|
2259
|
+
Version: 5.0.3
|
|
2260
|
+
License: BSD-2-Clause
|
|
2139
2261
|
Private: false
|
|
2140
|
-
Description:
|
|
2141
|
-
Repository: git
|
|
2142
|
-
Author:
|
|
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>
|
|
2143
2265
|
License Copyright:
|
|
2144
2266
|
===
|
|
2145
2267
|
|
|
2146
|
-
|
|
2268
|
+
Copyright (c) Felix Böhm
|
|
2269
|
+
All rights reserved.
|
|
2147
2270
|
|
|
2148
|
-
|
|
2271
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2149
2272
|
|
|
2150
|
-
|
|
2151
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2152
|
-
in the Software without restriction, including without limitation the rights
|
|
2153
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2154
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2155
|
-
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.
|
|
2156
2274
|
|
|
2157
|
-
|
|
2158
|
-
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.
|
|
2159
2276
|
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2163
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2164
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2165
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2166
|
-
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.
|
|
2167
2279
|
|
|
2168
2280
|
---
|
|
2169
2281
|
|
|
2170
|
-
Name:
|
|
2171
|
-
Version: 4.
|
|
2172
|
-
License:
|
|
2282
|
+
Name: entities
|
|
2283
|
+
Version: 4.5.0
|
|
2284
|
+
License: BSD-2-Clause
|
|
2173
2285
|
Private: false
|
|
2174
|
-
Description:
|
|
2175
|
-
Repository: git
|
|
2176
|
-
Author:
|
|
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>
|
|
2177
2289
|
License Copyright:
|
|
2178
2290
|
===
|
|
2179
2291
|
|
|
2180
|
-
Copyright (
|
|
2292
|
+
Copyright (c) Felix Böhm
|
|
2293
|
+
All rights reserved.
|
|
2181
2294
|
|
|
2182
|
-
|
|
2183
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2184
|
-
in the Software without restriction, including without limitation the rights
|
|
2185
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2186
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2187
|
-
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:
|
|
2188
2296
|
|
|
2189
|
-
|
|
2190
|
-
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.
|
|
2191
2298
|
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
FITNESS FOR A PARTICULAR PURPOSE
|
|
2195
|
-
|
|
2196
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2197
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2198
|
-
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.
|
|
2199
2303
|
|
|
2200
2304
|
---
|
|
2201
2305
|
|
|
2202
|
-
Name:
|
|
2203
|
-
Version: 2.
|
|
2306
|
+
Name: dom-serializer
|
|
2307
|
+
Version: 2.0.0
|
|
2204
2308
|
License: MIT
|
|
2205
2309
|
Private: false
|
|
2206
|
-
Description:
|
|
2207
|
-
Repository: git
|
|
2208
|
-
|
|
2209
|
-
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>
|
|
2210
2313
|
License Copyright:
|
|
2211
2314
|
===
|
|
2212
2315
|
|
|
2213
|
-
|
|
2316
|
+
License
|
|
2214
2317
|
|
|
2215
|
-
|
|
2216
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2217
|
-
in the Software without restriction, including without limitation the rights
|
|
2218
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2219
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2220
|
-
furnished to do so, subject to the following conditions:
|
|
2318
|
+
(The MIT License)
|
|
2221
2319
|
|
|
2222
|
-
|
|
2223
|
-
all copies or substantial portions of the Software.
|
|
2320
|
+
Copyright (c) 2014 The cheeriojs contributors
|
|
2224
2321
|
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2230
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2231
|
-
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.
|
|
2232
2327
|
|
|
2233
2328
|
---
|
|
2234
2329
|
|
|
2235
|
-
Name:
|
|
2236
|
-
Version:
|
|
2237
|
-
License:
|
|
2330
|
+
Name: domutils
|
|
2331
|
+
Version: 3.2.2
|
|
2332
|
+
License: BSD-2-Clause
|
|
2238
2333
|
Private: false
|
|
2239
|
-
Description:
|
|
2240
|
-
Repository: git
|
|
2241
|
-
|
|
2242
|
-
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>
|
|
2243
2337
|
License Copyright:
|
|
2244
2338
|
===
|
|
2245
2339
|
|
|
2246
|
-
Copyright (
|
|
2340
|
+
Copyright (c) Felix Böhm
|
|
2341
|
+
All rights reserved.
|
|
2247
2342
|
|
|
2248
|
-
|
|
2249
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2250
|
-
in the Software without restriction, including without limitation the rights
|
|
2251
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2252
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2253
|
-
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:
|
|
2254
2344
|
|
|
2255
|
-
|
|
2256
|
-
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.
|
|
2257
2346
|
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
FITNESS FOR A PARTICULAR PURPOSE
|
|
2261
|
-
|
|
2262
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2263
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2264
|
-
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.
|
|
2265
2351
|
|
|
2266
2352
|
---
|
|
2267
2353
|
|
|
2268
|
-
Name:
|
|
2269
|
-
Version:
|
|
2270
|
-
License:
|
|
2354
|
+
Name: boolbase
|
|
2355
|
+
Version: 1.0.0
|
|
2356
|
+
License: ISC
|
|
2271
2357
|
Private: false
|
|
2272
|
-
Description:
|
|
2273
|
-
Repository:
|
|
2274
|
-
|
|
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)
|
|
2275
2372
|
License Copyright:
|
|
2276
2373
|
===
|
|
2277
2374
|
|
|
2278
|
-
|
|
2375
|
+
Copyright (c) Felix Böhm
|
|
2376
|
+
All rights reserved.
|
|
2279
2377
|
|
|
2280
|
-
|
|
2378
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2281
2379
|
|
|
2282
|
-
|
|
2283
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2284
|
-
in the Software without restriction, including without limitation the rights
|
|
2285
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2286
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2287
|
-
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.
|
|
2288
2381
|
|
|
2289
|
-
|
|
2290
|
-
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.
|
|
2291
2383
|
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2295
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2296
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2297
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2298
|
-
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.
|
|
2299
2386
|
|
|
2300
2387
|
---
|
|
2301
2388
|
|
|
2302
|
-
Name:
|
|
2303
|
-
Version:
|
|
2304
|
-
License:
|
|
2389
|
+
Name: css-select
|
|
2390
|
+
Version: 5.2.2
|
|
2391
|
+
License: BSD-2-Clause
|
|
2305
2392
|
Private: false
|
|
2306
|
-
Description:
|
|
2307
|
-
Repository:
|
|
2308
|
-
Author:
|
|
2393
|
+
Description: a CSS selector compiler/engine
|
|
2394
|
+
Repository: git://github.com/fb55/css-select.git
|
|
2395
|
+
Author: Felix Boehm <me@feedic.com>
|
|
2309
2396
|
License Copyright:
|
|
2310
2397
|
===
|
|
2311
2398
|
|
|
2312
|
-
|
|
2399
|
+
Copyright (c) Felix Böhm
|
|
2400
|
+
All rights reserved.
|
|
2313
2401
|
|
|
2314
|
-
|
|
2402
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2315
2403
|
|
|
2316
|
-
|
|
2317
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2318
|
-
in the Software without restriction, including without limitation the rights
|
|
2319
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2320
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2321
|
-
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.
|
|
2322
2405
|
|
|
2323
|
-
|
|
2324
|
-
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.
|
|
2325
2407
|
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2329
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2330
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2331
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2332
|
-
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.
|
|
2333
2410
|
|
|
2334
2411
|
---
|
|
2335
2412
|
|
|
2336
|
-
Name:
|
|
2337
|
-
Version:
|
|
2338
|
-
License:
|
|
2413
|
+
Name: nth-check
|
|
2414
|
+
Version: 2.1.1
|
|
2415
|
+
License: BSD-2-Clause
|
|
2339
2416
|
Private: false
|
|
2340
|
-
Description:
|
|
2341
|
-
Repository: https://github.com/
|
|
2342
|
-
Homepage: https://
|
|
2343
|
-
Author:
|
|
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
|
+
===
|
|
2344
2423
|
|
|
2345
|
-
|
|
2424
|
+
Copyright (c) Felix Böhm
|
|
2425
|
+
All rights reserved.
|
|
2346
2426
|
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
Private: false
|
|
2351
|
-
Description: Theme vscode for CodeMirror.
|
|
2352
|
-
Repository: https://github.com/uiwjs/react-codemirror.git
|
|
2353
|
-
Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/vscode
|
|
2354
|
-
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:
|
|
2428
|
+
|
|
2429
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
2355
2430
|
|
|
2356
|
-
|
|
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.
|
|
2357
2432
|
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
License: MIT
|
|
2361
|
-
Private: false
|
|
2362
|
-
Description: Theme github for CodeMirror.
|
|
2363
|
-
Repository: https://github.com/uiwjs/react-codemirror.git
|
|
2364
|
-
Homepage: https://uiwjs.github.io/react-codemirror/#/theme/data/github/light
|
|
2365
|
-
Author: kenny wong <wowohoo@qq.com>
|
|
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.
|
|
2366
2435
|
|
|
2367
2436
|
---
|
|
2368
2437
|
|
|
@@ -2402,6 +2471,587 @@ SOFTWARE.
|
|
|
2402
2471
|
|
|
2403
2472
|
---
|
|
2404
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
|
+
|
|
2405
3055
|
Name: tslib
|
|
2406
3056
|
Version: 2.8.1
|
|
2407
3057
|
License: 0BSD
|
|
@@ -4576,41 +5226,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
4576
5226
|
|
|
4577
5227
|
---
|
|
4578
5228
|
|
|
4579
|
-
Name: html-react-parser
|
|
4580
|
-
Version: 5.2.17
|
|
4581
|
-
License: MIT
|
|
4582
|
-
Private: false
|
|
4583
|
-
Description: HTML to React parser.
|
|
4584
|
-
Repository: git+https://github.com/remarkablemark/html-react-parser.git
|
|
4585
|
-
Author: Mark <mark@remarkablemark.org> (https://remarkabl.org)
|
|
4586
|
-
License Copyright:
|
|
4587
|
-
===
|
|
4588
|
-
|
|
4589
|
-
The MIT License
|
|
4590
|
-
|
|
4591
|
-
Copyright (c) 2016 Menglin "Mark" Xu <mark@remarkablemark.org>
|
|
4592
|
-
|
|
4593
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4594
|
-
a copy of this software and associated documentation files (the
|
|
4595
|
-
"Software"), to deal in the Software without restriction, including
|
|
4596
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
4597
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4598
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
4599
|
-
the following conditions:
|
|
4600
|
-
|
|
4601
|
-
The above copyright notice and this permission notice shall be
|
|
4602
|
-
included in all copies or substantial portions of the Software.
|
|
4603
|
-
|
|
4604
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4605
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4606
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
4607
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
4608
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4609
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
4610
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4611
|
-
|
|
4612
|
-
---
|
|
4613
|
-
|
|
4614
5229
|
Name: html-dom-parser
|
|
4615
5230
|
Version: 5.1.8
|
|
4616
5231
|
License: MIT
|
|
@@ -4655,6 +5270,27 @@ Repository: https://github.com/remarkablemark/react-dom-core
|
|
|
4655
5270
|
|
|
4656
5271
|
---
|
|
4657
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
|
+
|
|
4658
5294
|
Name: style-to-object
|
|
4659
5295
|
Version: 1.0.14
|
|
4660
5296
|
License: MIT
|
|
@@ -4690,40 +5326,54 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4690
5326
|
|
|
4691
5327
|
---
|
|
4692
5328
|
|
|
4693
|
-
Name:
|
|
4694
|
-
Version:
|
|
5329
|
+
Name: style-to-js
|
|
5330
|
+
Version: 1.1.21
|
|
4695
5331
|
License: MIT
|
|
4696
5332
|
Private: false
|
|
4697
|
-
Description:
|
|
4698
|
-
Repository: git+https://github.com/remarkablemark/
|
|
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>
|
|
4699
5336
|
License Copyright:
|
|
4700
5337
|
===
|
|
4701
5338
|
|
|
4702
|
-
|
|
5339
|
+
The MIT License (MIT)
|
|
4703
5340
|
|
|
4704
|
-
Copyright (c)
|
|
5341
|
+
Copyright (c) 2020 Menglin "Mark" Xu <mark@remarkablemark.org>
|
|
4705
5342
|
|
|
4706
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
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:
|
|
4707
5350
|
|
|
4708
|
-
The above copyright notice and this permission notice shall be
|
|
5351
|
+
The above copyright notice and this permission notice shall be
|
|
5352
|
+
included in all copies or substantial portions of the Software.
|
|
4709
5353
|
|
|
4710
|
-
THE SOFTWARE IS PROVIDED
|
|
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.
|
|
4711
5361
|
|
|
4712
5362
|
---
|
|
4713
5363
|
|
|
4714
|
-
Name:
|
|
4715
|
-
Version:
|
|
5364
|
+
Name: html-react-parser
|
|
5365
|
+
Version: 5.2.17
|
|
4716
5366
|
License: MIT
|
|
4717
5367
|
Private: false
|
|
4718
|
-
Description:
|
|
4719
|
-
Repository: git+https://github.com/remarkablemark/
|
|
4720
|
-
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)
|
|
4721
5371
|
License Copyright:
|
|
4722
5372
|
===
|
|
4723
5373
|
|
|
4724
|
-
The MIT License
|
|
5374
|
+
The MIT License
|
|
4725
5375
|
|
|
4726
|
-
Copyright (c)
|
|
5376
|
+
Copyright (c) 2016 Menglin "Mark" Xu <mark@remarkablemark.org>
|
|
4727
5377
|
|
|
4728
5378
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4729
5379
|
a copy of this software and associated documentation files (the
|
|
@@ -4790,11 +5440,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
4790
5440
|
---
|
|
4791
5441
|
|
|
4792
5442
|
Name: @codemirror/commands
|
|
4793
|
-
Version: 6.10.
|
|
5443
|
+
Version: 6.10.3
|
|
4794
5444
|
License: MIT
|
|
4795
5445
|
Private: false
|
|
4796
5446
|
Description: Collection of editing commands for the CodeMirror code editor
|
|
4797
|
-
Repository: https://github.com/codemirror/commands.git
|
|
5447
|
+
Repository: git+https://github.com/codemirror/commands.git
|
|
4798
5448
|
Author: Marijn Haverbeke <marijn@haverbeke.berlin> (http://marijnhaverbeke.nl)
|
|
4799
5449
|
License Copyright:
|
|
4800
5450
|
===
|
|
@@ -5084,75 +5734,6 @@ furnished to do so, subject to the following conditions:
|
|
|
5084
5734
|
The above copyright notice and this permission notice shall be included in all
|
|
5085
5735
|
copies or substantial portions of the Software.
|
|
5086
5736
|
|
|
5087
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5088
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5089
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5090
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5091
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5092
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5093
|
-
SOFTWARE.
|
|
5094
|
-
|
|
5095
|
-
---
|
|
5096
|
-
|
|
5097
|
-
Name: zod
|
|
5098
|
-
Version: 4.3.6
|
|
5099
|
-
License: MIT
|
|
5100
|
-
Private: false
|
|
5101
|
-
Description: TypeScript-first schema declaration and validation library with static type inference
|
|
5102
|
-
Repository: git+https://github.com/colinhacks/zod.git
|
|
5103
|
-
Homepage: https://zod.dev
|
|
5104
|
-
Author: Colin McDonnell <zod@colinhacks.com>
|
|
5105
|
-
License Copyright:
|
|
5106
|
-
===
|
|
5107
|
-
|
|
5108
|
-
MIT License
|
|
5109
|
-
|
|
5110
|
-
Copyright (c) 2025 Colin McDonnell
|
|
5111
|
-
|
|
5112
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5113
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5114
|
-
in the Software without restriction, including without limitation the rights
|
|
5115
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5116
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5117
|
-
furnished to do so, subject to the following conditions:
|
|
5118
|
-
|
|
5119
|
-
The above copyright notice and this permission notice shall be included in all
|
|
5120
|
-
copies or substantial portions of the Software.
|
|
5121
|
-
|
|
5122
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5123
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5124
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5125
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5126
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5127
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5128
|
-
SOFTWARE.
|
|
5129
|
-
|
|
5130
|
-
---
|
|
5131
|
-
|
|
5132
|
-
Name: redux-persist
|
|
5133
|
-
Version: 6.0.0
|
|
5134
|
-
License: MIT
|
|
5135
|
-
Private: false
|
|
5136
|
-
Description: persist and rehydrate redux stores
|
|
5137
|
-
Repository: undefined
|
|
5138
|
-
Homepage: https://github.com/rt2zz/redux-persist#readme
|
|
5139
|
-
License Copyright:
|
|
5140
|
-
===
|
|
5141
|
-
|
|
5142
|
-
MIT License
|
|
5143
|
-
|
|
5144
|
-
Copyright (c) 2017 Zack Story
|
|
5145
|
-
|
|
5146
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5147
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5148
|
-
in the Software without restriction, including without limitation the rights
|
|
5149
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5150
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5151
|
-
furnished to do so, subject to the following conditions:
|
|
5152
|
-
|
|
5153
|
-
The above copyright notice and this permission notice shall be included in all
|
|
5154
|
-
copies or substantial portions of the Software.
|
|
5155
|
-
|
|
5156
5737
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5157
5738
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5158
5739
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|