tina4ruby 3.13.137 → 3.13.138

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +36 -0
  3. data/COMMERCIAL-LICENSE.md +8 -0
  4. data/LICENSE +373 -0
  5. data/LICENSE.txt +373 -21
  6. data/NOTICE +11 -0
  7. data/README.md +11 -7
  8. data/exe/tina4ruby +6 -0
  9. data/lib/tina4/ai.rb +6 -0
  10. data/lib/tina4/ai_client.rb +10 -3
  11. data/lib/tina4/api.rb +57 -7
  12. data/lib/tina4/auth.rb +18 -12
  13. data/lib/tina4/auto_crud.rb +83 -27
  14. data/lib/tina4/background.rb +7 -1
  15. data/lib/tina4/base64.rb +59 -0
  16. data/lib/tina4/cache.rb +6 -0
  17. data/lib/tina4/cache_backends/base_backend.rb +6 -0
  18. data/lib/tina4/cache_backends/database_backend.rb +6 -0
  19. data/lib/tina4/cache_backends/file_backend.rb +6 -0
  20. data/lib/tina4/cache_backends/memcached_backend.rb +6 -0
  21. data/lib/tina4/cache_backends/memory_backend.rb +6 -0
  22. data/lib/tina4/cache_backends/mongo_backend.rb +6 -0
  23. data/lib/tina4/cache_backends/redis_backend.rb +6 -0
  24. data/lib/tina4/cache_backends/valkey_backend.rb +6 -0
  25. data/lib/tina4/cache_backends.rb +6 -0
  26. data/lib/tina4/cli.rb +22 -7
  27. data/lib/tina4/constants.rb +12 -8
  28. data/lib/tina4/container.rb +6 -0
  29. data/lib/tina4/context/chunker.rb +6 -0
  30. data/lib/tina4/context.rb +13 -5
  31. data/lib/tina4/cors.rb +66 -10
  32. data/lib/tina4/crud.rb +78 -9
  33. data/lib/tina4/database/sqlite3_adapter.rb +9 -1
  34. data/lib/tina4/database.rb +260 -44
  35. data/lib/tina4/database_adapter.rb +6 -0
  36. data/lib/tina4/database_result.rb +6 -0
  37. data/lib/tina4/database_url.rb +6 -0
  38. data/lib/tina4/debug.rb +6 -0
  39. data/lib/tina4/dev.rb +6 -0
  40. data/lib/tina4/dev_admin.rb +215 -89
  41. data/lib/tina4/dev_mailbox.rb +6 -1
  42. data/lib/tina4/dispatch_pipeline.rb +86 -1
  43. data/lib/tina4/docs.rb +6 -0
  44. data/lib/tina4/docstore.rb +23 -4
  45. data/lib/tina4/drivers/arango_graph_driver.rb +8 -1
  46. data/lib/tina4/drivers/bolt_graph_driver.rb +6 -0
  47. data/lib/tina4/drivers/firebird_driver.rb +95 -6
  48. data/lib/tina4/drivers/mongodb_driver.rb +6 -0
  49. data/lib/tina4/drivers/mssql_driver.rb +54 -39
  50. data/lib/tina4/drivers/mysql_driver.rb +6 -0
  51. data/lib/tina4/drivers/odbc_driver.rb +6 -0
  52. data/lib/tina4/drivers/postgres_driver.rb +35 -8
  53. data/lib/tina4/drivers/schema_split.rb +6 -0
  54. data/lib/tina4/drivers/sqlite_driver.rb +8 -1
  55. data/lib/tina4/drivers/ultipa_graph_driver.rb +6 -0
  56. data/lib/tina4/env.rb +6 -0
  57. data/lib/tina4/error_overlay.rb +6 -0
  58. data/lib/tina4/events.rb +6 -0
  59. data/lib/tina4/feedback.rb +9 -2
  60. data/lib/tina4/field_types.rb +6 -0
  61. data/lib/tina4/form_parser.rb +241 -0
  62. data/lib/tina4/frond.rb +196 -56
  63. data/lib/tina4/gallery/auth/src/routes/api/gallery_auth.rb +6 -0
  64. data/lib/tina4/gallery/database/src/routes/api/gallery_db.rb +6 -0
  65. data/lib/tina4/gallery/error-overlay/src/routes/api/gallery_crash.rb +6 -0
  66. data/lib/tina4/gallery/orm/src/routes/api/gallery_products.rb +6 -0
  67. data/lib/tina4/gallery/queue/src/routes/api/gallery_queue.rb +6 -0
  68. data/lib/tina4/gallery/rest-api/src/routes/api/gallery_hello.rb +6 -0
  69. data/lib/tina4/gallery/templates/src/routes/gallery_page.rb +6 -0
  70. data/lib/tina4/graph.rb +6 -0
  71. data/lib/tina4/graphql.rb +28 -27
  72. data/lib/tina4/health.rb +6 -0
  73. data/lib/tina4/html_element.rb +6 -0
  74. data/lib/tina4/http_server.rb +690 -0
  75. data/lib/tina4/imap_client.rb +352 -0
  76. data/lib/tina4/import_helper.rb +6 -0
  77. data/lib/tina4/job.rb +6 -0
  78. data/lib/tina4/localization.rb +6 -0
  79. data/lib/tina4/log.rb +6 -0
  80. data/lib/tina4/mail_socket.rb +124 -0
  81. data/lib/tina4/mcp.rb +15 -8
  82. data/lib/tina4/messenger.rb +86 -55
  83. data/lib/tina4/metrics.rb +6 -0
  84. data/lib/tina4/middleware.rb +24 -9
  85. data/lib/tina4/migration.rb +6 -0
  86. data/lib/tina4/model_collection.rb +6 -0
  87. data/lib/tina4/mqtt.rb +9 -2
  88. data/lib/tina4/mqtt_message.rb +6 -0
  89. data/lib/tina4/orm.rb +72 -16
  90. data/lib/tina4/parse_json.rb +25 -0
  91. data/lib/tina4/plan.rb +9 -2
  92. data/lib/tina4/point.rb +6 -0
  93. data/lib/tina4/port_takeover.rb +6 -0
  94. data/lib/tina4/project_index.rb +6 -0
  95. data/lib/tina4/public/THIRD-PARTY-NOTICES.md +55 -0
  96. data/lib/tina4/public/bundled-component-provenance.json +48 -0
  97. data/lib/tina4/public/js/tina4js.min.js +13 -3
  98. data/lib/tina4/public/licenses/swagger-ui-3.10.0-original-notice.txt +11 -0
  99. data/lib/tina4/public/licenses/swagger-ui-5.17.14-NOTICE.txt +2 -0
  100. data/lib/tina4/public/licenses/swagger-ui-Apache-2.0.txt +202 -0
  101. data/lib/tina4/public/licenses/tina4-css-MIT.txt +21 -0
  102. data/lib/tina4/public/licenses/tina4-dev-admin-components.json +240 -0
  103. data/lib/tina4/public/licenses/tina4-dev-admin-third-party.txt +919 -0
  104. data/lib/tina4/public/licenses/tina4-js-MIT.txt +20 -0
  105. data/lib/tina4/push.rb +9 -3
  106. data/lib/tina4/query_builder.rb +6 -0
  107. data/lib/tina4/queue.rb +6 -0
  108. data/lib/tina4/queue_backends/kafka_backend.rb +10 -2
  109. data/lib/tina4/queue_backends/lite_backend.rb +6 -0
  110. data/lib/tina4/queue_backends/mongo_backend.rb +6 -0
  111. data/lib/tina4/queue_backends/rabbitmq_backend.rb +10 -2
  112. data/lib/tina4/rack_app.rb +11 -1
  113. data/lib/tina4/rate_limiter.rb +6 -0
  114. data/lib/tina4/realtime/attachment.rb +6 -0
  115. data/lib/tina4/realtime/channel.rb +6 -0
  116. data/lib/tina4/realtime/channel_member.rb +6 -0
  117. data/lib/tina4/realtime/local_storage.rb +6 -0
  118. data/lib/tina4/realtime/message.rb +6 -0
  119. data/lib/tina4/realtime/s3_storage.rb +6 -0
  120. data/lib/tina4/realtime/storage.rb +6 -0
  121. data/lib/tina4/realtime/storage_backend.rb +6 -0
  122. data/lib/tina4/realtime/workspace.rb +6 -0
  123. data/lib/tina4/realtime.rb +10 -3
  124. data/lib/tina4/request.rb +85 -127
  125. data/lib/tina4/response.rb +71 -9
  126. data/lib/tina4/response_cache.rb +6 -0
  127. data/lib/tina4/router.rb +6 -0
  128. data/lib/tina4/secret_file.rb +34 -0
  129. data/lib/tina4/seeder.rb +9 -3
  130. data/lib/tina4/service.rb +8 -2
  131. data/lib/tina4/service_runner.rb +6 -0
  132. data/lib/tina4/session.rb +6 -0
  133. data/lib/tina4/session_handlers/database_handler.rb +6 -0
  134. data/lib/tina4/session_handlers/file_handler.rb +6 -0
  135. data/lib/tina4/session_handlers/memcached_handler.rb +6 -0
  136. data/lib/tina4/session_handlers/mongo_handler.rb +108 -39
  137. data/lib/tina4/session_handlers/mongo_wire_client.rb +23 -9
  138. data/lib/tina4/session_handlers/redis_handler.rb +6 -0
  139. data/lib/tina4/session_handlers/resp_client.rb +6 -0
  140. data/lib/tina4/session_handlers/valkey_handler.rb +6 -0
  141. data/lib/tina4/shutdown.rb +17 -14
  142. data/lib/tina4/smtp_client.rb +222 -0
  143. data/lib/tina4/sql_translator.rb +93 -0
  144. data/lib/tina4/sqlite3_gem.rb +27 -0
  145. data/lib/tina4/sso.rb +25 -8
  146. data/lib/tina4/swagger.rb +6 -0
  147. data/lib/tina4/template.rb +6 -0
  148. data/lib/tina4/test.rb +8 -2
  149. data/lib/tina4/test_client.rb +8 -1
  150. data/lib/tina4/testing.rb +8 -1
  151. data/lib/tina4/validator.rb +6 -0
  152. data/lib/tina4/version.rb +7 -1
  153. data/lib/tina4/webserver.rb +25 -143
  154. data/lib/tina4/websocket.rb +10 -4
  155. data/lib/tina4/websocket_backplane.rb +19 -2
  156. data/lib/tina4/wsdl.rb +31 -16
  157. data/lib/tina4/xml_parser.rb +259 -0
  158. data/lib/tina4.rb +87 -31
  159. data/lib/tina4ruby.rb +6 -0
  160. metadata +43 -140
@@ -0,0 +1,919 @@
1
+ Third-party components in the vendored Tina4 developer dashboard
2
+ Source checkout: tina4stack/tina4-dev-admin@21700e0aca0e2a3f0021d4b08959dabb0ee4a879
3
+ Bundled dashboard SHA256: 0ca84246c26afb6a3243aafd1c65fa9486c076039e5d721b6f44661b3a59d7c2
4
+ The inventory covers all non-development lockfile dependencies (a conservative superset of bundled modules).
5
+
6
+ ======================================================================
7
+ @codemirror/autocomplete 6.20.1
8
+ Source: https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.20.1.tgz
9
+
10
+ LICENSE
11
+ MIT License
12
+
13
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy
16
+ of this software and associated documentation files (the "Software"), to deal
17
+ in the Software without restriction, including without limitation the rights
18
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19
+ copies of the Software, and to permit persons to whom the Software is
20
+ furnished to do so, subject to the following conditions:
21
+
22
+ The above copyright notice and this permission notice shall be included in
23
+ all copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31
+ THE SOFTWARE.
32
+
33
+
34
+ ======================================================================
35
+ @codemirror/commands 6.10.3
36
+ Source: https://registry.npmjs.org/@codemirror/commands/-/commands-6.10.3.tgz
37
+
38
+ LICENSE
39
+ MIT License
40
+
41
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
42
+
43
+ Permission is hereby granted, free of charge, to any person obtaining a copy
44
+ of this software and associated documentation files (the "Software"), to deal
45
+ in the Software without restriction, including without limitation the rights
46
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
47
+ copies of the Software, and to permit persons to whom the Software is
48
+ furnished to do so, subject to the following conditions:
49
+
50
+ The above copyright notice and this permission notice shall be included in
51
+ all copies or substantial portions of the Software.
52
+
53
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
54
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
55
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
56
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
57
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
58
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
59
+ THE SOFTWARE.
60
+
61
+
62
+ ======================================================================
63
+ @codemirror/lang-css 6.3.1
64
+ Source: https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-6.3.1.tgz
65
+
66
+ LICENSE
67
+ MIT License
68
+
69
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
70
+
71
+ Permission is hereby granted, free of charge, to any person obtaining a copy
72
+ of this software and associated documentation files (the "Software"), to deal
73
+ in the Software without restriction, including without limitation the rights
74
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
75
+ copies of the Software, and to permit persons to whom the Software is
76
+ furnished to do so, subject to the following conditions:
77
+
78
+ The above copyright notice and this permission notice shall be included in
79
+ all copies or substantial portions of the Software.
80
+
81
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
84
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
85
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
86
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
87
+ THE SOFTWARE.
88
+
89
+
90
+ ======================================================================
91
+ @codemirror/lang-html 6.4.11
92
+ Source: https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-6.4.11.tgz
93
+
94
+ LICENSE
95
+ MIT License
96
+
97
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
98
+
99
+ Permission is hereby granted, free of charge, to any person obtaining a copy
100
+ of this software and associated documentation files (the "Software"), to deal
101
+ in the Software without restriction, including without limitation the rights
102
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
103
+ copies of the Software, and to permit persons to whom the Software is
104
+ furnished to do so, subject to the following conditions:
105
+
106
+ The above copyright notice and this permission notice shall be included in
107
+ all copies or substantial portions of the Software.
108
+
109
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
110
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
111
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
112
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
113
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
114
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
115
+ THE SOFTWARE.
116
+
117
+
118
+ ======================================================================
119
+ @codemirror/lang-javascript 6.2.5
120
+ Source: https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.5.tgz
121
+
122
+ LICENSE
123
+ MIT License
124
+
125
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
126
+
127
+ Permission is hereby granted, free of charge, to any person obtaining a copy
128
+ of this software and associated documentation files (the "Software"), to deal
129
+ in the Software without restriction, including without limitation the rights
130
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
131
+ copies of the Software, and to permit persons to whom the Software is
132
+ furnished to do so, subject to the following conditions:
133
+
134
+ The above copyright notice and this permission notice shall be included in
135
+ all copies or substantial portions of the Software.
136
+
137
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
138
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
139
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
140
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
141
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
142
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
143
+ THE SOFTWARE.
144
+
145
+
146
+ ======================================================================
147
+ @codemirror/lang-json 6.0.2
148
+ Source: https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.2.tgz
149
+
150
+ LICENSE
151
+ MIT License
152
+
153
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
154
+
155
+ Permission is hereby granted, free of charge, to any person obtaining a copy
156
+ of this software and associated documentation files (the "Software"), to deal
157
+ in the Software without restriction, including without limitation the rights
158
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
159
+ copies of the Software, and to permit persons to whom the Software is
160
+ furnished to do so, subject to the following conditions:
161
+
162
+ The above copyright notice and this permission notice shall be included in
163
+ all copies or substantial portions of the Software.
164
+
165
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
166
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
167
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
168
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
169
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
170
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
171
+ THE SOFTWARE.
172
+
173
+
174
+ ======================================================================
175
+ @codemirror/lang-markdown 6.5.0
176
+ Source: https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-6.5.0.tgz
177
+
178
+ LICENSE
179
+ MIT License
180
+
181
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
182
+
183
+ Permission is hereby granted, free of charge, to any person obtaining a copy
184
+ of this software and associated documentation files (the "Software"), to deal
185
+ in the Software without restriction, including without limitation the rights
186
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
187
+ copies of the Software, and to permit persons to whom the Software is
188
+ furnished to do so, subject to the following conditions:
189
+
190
+ The above copyright notice and this permission notice shall be included in
191
+ all copies or substantial portions of the Software.
192
+
193
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
194
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
195
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
196
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
197
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
198
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
199
+ THE SOFTWARE.
200
+
201
+
202
+ ======================================================================
203
+ @codemirror/lang-php 6.0.2
204
+ Source: https://registry.npmjs.org/@codemirror/lang-php/-/lang-php-6.0.2.tgz
205
+
206
+ LICENSE
207
+ MIT License
208
+
209
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
210
+
211
+ Permission is hereby granted, free of charge, to any person obtaining a copy
212
+ of this software and associated documentation files (the "Software"), to deal
213
+ in the Software without restriction, including without limitation the rights
214
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
215
+ copies of the Software, and to permit persons to whom the Software is
216
+ furnished to do so, subject to the following conditions:
217
+
218
+ The above copyright notice and this permission notice shall be included in
219
+ all copies or substantial portions of the Software.
220
+
221
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
222
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
223
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
224
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
225
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
226
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
227
+ THE SOFTWARE.
228
+
229
+
230
+ ======================================================================
231
+ @codemirror/lang-python 6.2.1
232
+ Source: https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.2.1.tgz
233
+
234
+ LICENSE
235
+ MIT License
236
+
237
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
238
+
239
+ Permission is hereby granted, free of charge, to any person obtaining a copy
240
+ of this software and associated documentation files (the "Software"), to deal
241
+ in the Software without restriction, including without limitation the rights
242
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
243
+ copies of the Software, and to permit persons to whom the Software is
244
+ furnished to do so, subject to the following conditions:
245
+
246
+ The above copyright notice and this permission notice shall be included in
247
+ all copies or substantial portions of the Software.
248
+
249
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
250
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
251
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
252
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
253
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
254
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
255
+ THE SOFTWARE.
256
+
257
+
258
+ ======================================================================
259
+ @codemirror/lang-sql 6.10.0
260
+ Source: https://registry.npmjs.org/@codemirror/lang-sql/-/lang-sql-6.10.0.tgz
261
+
262
+ LICENSE
263
+ MIT License
264
+
265
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
266
+
267
+ Permission is hereby granted, free of charge, to any person obtaining a copy
268
+ of this software and associated documentation files (the "Software"), to deal
269
+ in the Software without restriction, including without limitation the rights
270
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
271
+ copies of the Software, and to permit persons to whom the Software is
272
+ furnished to do so, subject to the following conditions:
273
+
274
+ The above copyright notice and this permission notice shall be included in
275
+ all copies or substantial portions of the Software.
276
+
277
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
278
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
279
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
280
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
281
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
282
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
283
+ THE SOFTWARE.
284
+
285
+
286
+ ======================================================================
287
+ @codemirror/lang-yaml 6.1.3
288
+ Source: https://registry.npmjs.org/@codemirror/lang-yaml/-/lang-yaml-6.1.3.tgz
289
+
290
+ LICENSE
291
+ MIT License
292
+
293
+ Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
294
+
295
+ Permission is hereby granted, free of charge, to any person obtaining a copy
296
+ of this software and associated documentation files (the "Software"), to deal
297
+ in the Software without restriction, including without limitation the rights
298
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
299
+ copies of the Software, and to permit persons to whom the Software is
300
+ furnished to do so, subject to the following conditions:
301
+
302
+ The above copyright notice and this permission notice shall be included in
303
+ all copies or substantial portions of the Software.
304
+
305
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
306
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
307
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
308
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
309
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
310
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
311
+ THE SOFTWARE.
312
+
313
+
314
+ ======================================================================
315
+ @codemirror/language 6.12.3
316
+ Source: https://registry.npmjs.org/@codemirror/language/-/language-6.12.3.tgz
317
+
318
+ LICENSE
319
+ MIT License
320
+
321
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
322
+
323
+ Permission is hereby granted, free of charge, to any person obtaining a copy
324
+ of this software and associated documentation files (the "Software"), to deal
325
+ in the Software without restriction, including without limitation the rights
326
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
327
+ copies of the Software, and to permit persons to whom the Software is
328
+ furnished to do so, subject to the following conditions:
329
+
330
+ The above copyright notice and this permission notice shall be included in
331
+ all copies or substantial portions of the Software.
332
+
333
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
334
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
335
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
336
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
337
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
338
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
339
+ THE SOFTWARE.
340
+
341
+
342
+ ======================================================================
343
+ @codemirror/legacy-modes 6.5.2
344
+ Source: https://registry.npmjs.org/@codemirror/legacy-modes/-/legacy-modes-6.5.2.tgz
345
+
346
+ LICENSE
347
+ MIT License
348
+
349
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
350
+
351
+ Permission is hereby granted, free of charge, to any person obtaining a copy
352
+ of this software and associated documentation files (the "Software"), to deal
353
+ in the Software without restriction, including without limitation the rights
354
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
355
+ copies of the Software, and to permit persons to whom the Software is
356
+ furnished to do so, subject to the following conditions:
357
+
358
+ The above copyright notice and this permission notice shall be included in
359
+ all copies or substantial portions of the Software.
360
+
361
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
362
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
363
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
364
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
365
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
366
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
367
+ THE SOFTWARE.
368
+
369
+
370
+ ======================================================================
371
+ @codemirror/lint 6.9.5
372
+ Source: https://registry.npmjs.org/@codemirror/lint/-/lint-6.9.5.tgz
373
+
374
+ LICENSE
375
+ MIT License
376
+
377
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
378
+
379
+ Permission is hereby granted, free of charge, to any person obtaining a copy
380
+ of this software and associated documentation files (the "Software"), to deal
381
+ in the Software without restriction, including without limitation the rights
382
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
383
+ copies of the Software, and to permit persons to whom the Software is
384
+ furnished to do so, subject to the following conditions:
385
+
386
+ The above copyright notice and this permission notice shall be included in
387
+ all copies or substantial portions of the Software.
388
+
389
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
390
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
391
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
392
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
393
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
394
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
395
+ THE SOFTWARE.
396
+
397
+
398
+ ======================================================================
399
+ @codemirror/search 6.6.0
400
+ Source: https://registry.npmjs.org/@codemirror/search/-/search-6.6.0.tgz
401
+
402
+ LICENSE
403
+ MIT License
404
+
405
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
406
+
407
+ Permission is hereby granted, free of charge, to any person obtaining a copy
408
+ of this software and associated documentation files (the "Software"), to deal
409
+ in the Software without restriction, including without limitation the rights
410
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
411
+ copies of the Software, and to permit persons to whom the Software is
412
+ furnished to do so, subject to the following conditions:
413
+
414
+ The above copyright notice and this permission notice shall be included in
415
+ all copies or substantial portions of the Software.
416
+
417
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
418
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
419
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
420
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
421
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
422
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
423
+ THE SOFTWARE.
424
+
425
+
426
+ ======================================================================
427
+ @codemirror/state 6.6.0
428
+ Source: https://registry.npmjs.org/@codemirror/state/-/state-6.6.0.tgz
429
+
430
+ LICENSE
431
+ MIT License
432
+
433
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
434
+
435
+ Permission is hereby granted, free of charge, to any person obtaining a copy
436
+ of this software and associated documentation files (the "Software"), to deal
437
+ in the Software without restriction, including without limitation the rights
438
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
439
+ copies of the Software, and to permit persons to whom the Software is
440
+ furnished to do so, subject to the following conditions:
441
+
442
+ The above copyright notice and this permission notice shall be included in
443
+ all copies or substantial portions of the Software.
444
+
445
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
446
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
447
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
448
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
449
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
450
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
451
+ THE SOFTWARE.
452
+
453
+
454
+ ======================================================================
455
+ @codemirror/theme-one-dark 6.1.3
456
+ Source: https://registry.npmjs.org/@codemirror/theme-one-dark/-/theme-one-dark-6.1.3.tgz
457
+
458
+ LICENSE
459
+ MIT License
460
+
461
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
462
+
463
+ Permission is hereby granted, free of charge, to any person obtaining a copy
464
+ of this software and associated documentation files (the "Software"), to deal
465
+ in the Software without restriction, including without limitation the rights
466
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
467
+ copies of the Software, and to permit persons to whom the Software is
468
+ furnished to do so, subject to the following conditions:
469
+
470
+ The above copyright notice and this permission notice shall be included in
471
+ all copies or substantial portions of the Software.
472
+
473
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
474
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
475
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
476
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
477
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
478
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
479
+ THE SOFTWARE.
480
+
481
+
482
+ ======================================================================
483
+ @codemirror/view 6.41.0
484
+ Source: https://registry.npmjs.org/@codemirror/view/-/view-6.41.0.tgz
485
+
486
+ LICENSE
487
+ MIT License
488
+
489
+ Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
490
+
491
+ Permission is hereby granted, free of charge, to any person obtaining a copy
492
+ of this software and associated documentation files (the "Software"), to deal
493
+ in the Software without restriction, including without limitation the rights
494
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
495
+ copies of the Software, and to permit persons to whom the Software is
496
+ furnished to do so, subject to the following conditions:
497
+
498
+ The above copyright notice and this permission notice shall be included in
499
+ all copies or substantial portions of the Software.
500
+
501
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
502
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
503
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
504
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
505
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
506
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
507
+ THE SOFTWARE.
508
+
509
+
510
+ ======================================================================
511
+ @lezer/common 1.5.2
512
+ Source: https://registry.npmjs.org/@lezer/common/-/common-1.5.2.tgz
513
+
514
+ LICENSE
515
+ MIT License
516
+
517
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
518
+
519
+ Permission is hereby granted, free of charge, to any person obtaining a copy
520
+ of this software and associated documentation files (the "Software"), to deal
521
+ in the Software without restriction, including without limitation the rights
522
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
523
+ copies of the Software, and to permit persons to whom the Software is
524
+ furnished to do so, subject to the following conditions:
525
+
526
+ The above copyright notice and this permission notice shall be included in
527
+ all copies or substantial portions of the Software.
528
+
529
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
530
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
531
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
532
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
533
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
534
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
535
+ THE SOFTWARE.
536
+
537
+
538
+ ======================================================================
539
+ @lezer/css 1.3.3
540
+ Source: https://registry.npmjs.org/@lezer/css/-/css-1.3.3.tgz
541
+
542
+ LICENSE
543
+ MIT License
544
+
545
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
546
+
547
+ Permission is hereby granted, free of charge, to any person obtaining a copy
548
+ of this software and associated documentation files (the "Software"), to deal
549
+ in the Software without restriction, including without limitation the rights
550
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
551
+ copies of the Software, and to permit persons to whom the Software is
552
+ furnished to do so, subject to the following conditions:
553
+
554
+ The above copyright notice and this permission notice shall be included in
555
+ all copies or substantial portions of the Software.
556
+
557
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
558
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
559
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
560
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
561
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
562
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
563
+ THE SOFTWARE.
564
+
565
+
566
+ ======================================================================
567
+ @lezer/highlight 1.2.3
568
+ Source: https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.3.tgz
569
+
570
+ LICENSE
571
+ MIT License
572
+
573
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
574
+
575
+ Permission is hereby granted, free of charge, to any person obtaining a copy
576
+ of this software and associated documentation files (the "Software"), to deal
577
+ in the Software without restriction, including without limitation the rights
578
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
579
+ copies of the Software, and to permit persons to whom the Software is
580
+ furnished to do so, subject to the following conditions:
581
+
582
+ The above copyright notice and this permission notice shall be included in
583
+ all copies or substantial portions of the Software.
584
+
585
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
586
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
587
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
588
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
589
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
590
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
591
+ THE SOFTWARE.
592
+
593
+
594
+ ======================================================================
595
+ @lezer/html 1.3.13
596
+ Source: https://registry.npmjs.org/@lezer/html/-/html-1.3.13.tgz
597
+
598
+ LICENSE
599
+ MIT License
600
+
601
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
602
+
603
+ Permission is hereby granted, free of charge, to any person obtaining a copy
604
+ of this software and associated documentation files (the "Software"), to deal
605
+ in the Software without restriction, including without limitation the rights
606
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
607
+ copies of the Software, and to permit persons to whom the Software is
608
+ furnished to do so, subject to the following conditions:
609
+
610
+ The above copyright notice and this permission notice shall be included in
611
+ all copies or substantial portions of the Software.
612
+
613
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
614
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
615
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
616
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
617
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
618
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
619
+ THE SOFTWARE.
620
+
621
+
622
+ ======================================================================
623
+ @lezer/javascript 1.5.4
624
+ Source: https://registry.npmjs.org/@lezer/javascript/-/javascript-1.5.4.tgz
625
+
626
+ LICENSE
627
+ MIT License
628
+
629
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
630
+
631
+ Permission is hereby granted, free of charge, to any person obtaining a copy
632
+ of this software and associated documentation files (the "Software"), to deal
633
+ in the Software without restriction, including without limitation the rights
634
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
635
+ copies of the Software, and to permit persons to whom the Software is
636
+ furnished to do so, subject to the following conditions:
637
+
638
+ The above copyright notice and this permission notice shall be included in
639
+ all copies or substantial portions of the Software.
640
+
641
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
642
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
643
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
644
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
645
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
646
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
647
+ THE SOFTWARE.
648
+
649
+
650
+ ======================================================================
651
+ @lezer/json 1.0.3
652
+ Source: https://registry.npmjs.org/@lezer/json/-/json-1.0.3.tgz
653
+
654
+ LICENSE
655
+ MIT License
656
+
657
+ Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>, Arun Srinivasan <rulfzid@gmail.com>, and others
658
+
659
+ Permission is hereby granted, free of charge, to any person obtaining a copy
660
+ of this software and associated documentation files (the "Software"), to deal
661
+ in the Software without restriction, including without limitation the rights
662
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
663
+ copies of the Software, and to permit persons to whom the Software is
664
+ furnished to do so, subject to the following conditions:
665
+
666
+ The above copyright notice and this permission notice shall be included in
667
+ all copies or substantial portions of the Software.
668
+
669
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
670
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
671
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
672
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
673
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
674
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
675
+ THE SOFTWARE.
676
+
677
+ ======================================================================
678
+ @lezer/lr 1.4.9
679
+ Source: https://registry.npmjs.org/@lezer/lr/-/lr-1.4.9.tgz
680
+
681
+ LICENSE
682
+ MIT License
683
+
684
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
685
+
686
+ Permission is hereby granted, free of charge, to any person obtaining a copy
687
+ of this software and associated documentation files (the "Software"), to deal
688
+ in the Software without restriction, including without limitation the rights
689
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
690
+ copies of the Software, and to permit persons to whom the Software is
691
+ furnished to do so, subject to the following conditions:
692
+
693
+ The above copyright notice and this permission notice shall be included in
694
+ all copies or substantial portions of the Software.
695
+
696
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
697
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
698
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
699
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
700
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
701
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
702
+ THE SOFTWARE.
703
+
704
+
705
+ ======================================================================
706
+ @lezer/markdown 1.6.3
707
+ Source: https://registry.npmjs.org/@lezer/markdown/-/markdown-1.6.3.tgz
708
+
709
+ LICENSE
710
+ MIT License
711
+
712
+ Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
713
+
714
+ Permission is hereby granted, free of charge, to any person obtaining a copy
715
+ of this software and associated documentation files (the "Software"), to deal
716
+ in the Software without restriction, including without limitation the rights
717
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
718
+ copies of the Software, and to permit persons to whom the Software is
719
+ furnished to do so, subject to the following conditions:
720
+
721
+ The above copyright notice and this permission notice shall be included in
722
+ all copies or substantial portions of the Software.
723
+
724
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
725
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
726
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
727
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
728
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
729
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
730
+ THE SOFTWARE.
731
+
732
+
733
+ ======================================================================
734
+ @lezer/php 1.0.5
735
+ Source: https://registry.npmjs.org/@lezer/php/-/php-1.0.5.tgz
736
+
737
+ LICENSE
738
+ MIT License
739
+
740
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
741
+
742
+ Permission is hereby granted, free of charge, to any person obtaining a copy
743
+ of this software and associated documentation files (the "Software"), to deal
744
+ in the Software without restriction, including without limitation the rights
745
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
746
+ copies of the Software, and to permit persons to whom the Software is
747
+ furnished to do so, subject to the following conditions:
748
+
749
+ The above copyright notice and this permission notice shall be included in
750
+ all copies or substantial portions of the Software.
751
+
752
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
753
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
754
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
755
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
756
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
757
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
758
+ THE SOFTWARE.
759
+
760
+
761
+ ======================================================================
762
+ @lezer/python 1.1.18
763
+ Source: https://registry.npmjs.org/@lezer/python/-/python-1.1.18.tgz
764
+
765
+ LICENSE
766
+ MIT License
767
+
768
+ Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
769
+
770
+ Permission is hereby granted, free of charge, to any person obtaining a copy
771
+ of this software and associated documentation files (the "Software"), to deal
772
+ in the Software without restriction, including without limitation the rights
773
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
774
+ copies of the Software, and to permit persons to whom the Software is
775
+ furnished to do so, subject to the following conditions:
776
+
777
+ The above copyright notice and this permission notice shall be included in
778
+ all copies or substantial portions of the Software.
779
+
780
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
781
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
782
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
783
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
784
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
785
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
786
+ THE SOFTWARE.
787
+
788
+
789
+ ======================================================================
790
+ @lezer/yaml 1.0.4
791
+ Source: https://registry.npmjs.org/@lezer/yaml/-/yaml-1.0.4.tgz
792
+
793
+ LICENSE
794
+ MIT License
795
+
796
+ Copyright (C) 2024 by Marijn Haverbeke <marijnh@gmail.com> and others
797
+
798
+ Permission is hereby granted, free of charge, to any person obtaining a copy
799
+ of this software and associated documentation files (the "Software"), to deal
800
+ in the Software without restriction, including without limitation the rights
801
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
802
+ copies of the Software, and to permit persons to whom the Software is
803
+ furnished to do so, subject to the following conditions:
804
+
805
+ The above copyright notice and this permission notice shall be included in
806
+ all copies or substantial portions of the Software.
807
+
808
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
809
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
810
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
811
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
812
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
813
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
814
+ THE SOFTWARE.
815
+
816
+ ======================================================================
817
+ @marijn/find-cluster-break 1.0.2
818
+ Source: https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz
819
+
820
+ LICENSE
821
+ MIT License
822
+
823
+ Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin>
824
+
825
+ Permission is hereby granted, free of charge, to any person obtaining a copy
826
+ of this software and associated documentation files (the "Software"), to deal
827
+ in the Software without restriction, including without limitation the rights
828
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
829
+ copies of the Software, and to permit persons to whom the Software is
830
+ furnished to do so, subject to the following conditions:
831
+
832
+ The above copyright notice and this permission notice shall be included in
833
+ all copies or substantial portions of the Software.
834
+
835
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
836
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
837
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
838
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
839
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
840
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
841
+ THE SOFTWARE.
842
+
843
+
844
+ ======================================================================
845
+ crelt 1.0.6
846
+ Source: https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz
847
+
848
+ LICENSE
849
+ Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>
850
+
851
+ Permission is hereby granted, free of charge, to any person obtaining a copy
852
+ of this software and associated documentation files (the "Software"), to deal
853
+ in the Software without restriction, including without limitation the rights
854
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
855
+ copies of the Software, and to permit persons to whom the Software is
856
+ furnished to do so, subject to the following conditions:
857
+
858
+ The above copyright notice and this permission notice shall be included in
859
+ all copies or substantial portions of the Software.
860
+
861
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
862
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
863
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
864
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
865
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
866
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
867
+ THE SOFTWARE.
868
+
869
+
870
+ ======================================================================
871
+ style-mod 4.1.3
872
+ Source: https://registry.npmjs.org/style-mod/-/style-mod-4.1.3.tgz
873
+
874
+ LICENSE
875
+ Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
876
+
877
+ Permission is hereby granted, free of charge, to any person obtaining a copy
878
+ of this software and associated documentation files (the "Software"), to deal
879
+ in the Software without restriction, including without limitation the rights
880
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
881
+ copies of the Software, and to permit persons to whom the Software is
882
+ furnished to do so, subject to the following conditions:
883
+
884
+ The above copyright notice and this permission notice shall be included in
885
+ all copies or substantial portions of the Software.
886
+
887
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
888
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
889
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
890
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
891
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
892
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
893
+ THE SOFTWARE.
894
+
895
+
896
+ ======================================================================
897
+ w3c-keyname 2.2.8
898
+ Source: https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz
899
+
900
+ LICENSE
901
+ Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
902
+
903
+ Permission is hereby granted, free of charge, to any person obtaining a copy
904
+ of this software and associated documentation files (the "Software"), to deal
905
+ in the Software without restriction, including without limitation the rights
906
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
907
+ copies of the Software, and to permit persons to whom the Software is
908
+ furnished to do so, subject to the following conditions:
909
+
910
+ The above copyright notice and this permission notice shall be included in
911
+ all copies or substantial portions of the Software.
912
+
913
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
914
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
915
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
916
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
917
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
918
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
919
+ THE SOFTWARE.