zax-dashboard 1.0.5

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Vault12, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,90 @@
1
+ # Zax Dashboard
2
+
3
+ <p align="center">
4
+ <img src="https://user-images.githubusercontent.com/1370944/121530189-d7da7e80-ca05-11eb-9242-c564547b425a.jpg"
5
+ alt="Vault12 Zax Dashboard">
6
+ </p>
7
+
8
+ <p align="center">
9
+ <a href="https://github.com/vault12/zax-dashboard/actions/workflows/ci.yml">
10
+ <img src="https://github.com/vault12/zax-dashboard/actions/workflows/ci.yml/badge.svg" alt="Github Actions Build Status" />
11
+ </a>
12
+ <a href="https://vault12.github.io/zax-dashboard/">
13
+ <img src="https://img.shields.io/badge/demo-online-orange" alt="Demo Online" />
14
+ </a>
15
+ <a href="https://opensource.org/licenses/MIT">
16
+ <img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="MIT License" />
17
+ </a>
18
+ </p>
19
+
20
+ <p align="center">
21
+ <a href="http://makeapullrequest.com">
22
+ <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome" />
23
+ </a>
24
+ <a href="https://twitter.com/_Vault12_">
25
+ <img src="https://img.shields.io/twitter/follow/_Vault12_?label=Follow&style=social" alt="Follow" />
26
+ </a>
27
+ </p>
28
+
29
+ **Zax Dashboard** is a simple single page web app powered by [Angular](https://angular.io), introducing typical interactions with [Zax Relay](https://github.com/vault12/zax), a [NaCl-based Cryptographic Relay](https://s3-us-west-1.amazonaws.com/vault12/zax_infogfx.jpg). **Zax Dashboard** uses the [Glow.ts](https://github.com/vault12/glow.ts) library to provide a user-friendly access point to encrypted Mailboxes on a given relay. You can read the full [technical specification here](http://bit.ly/nacl_relay_spec).
30
+
31
+ ## Demo
32
+
33
+ We maintain a live [Test Server](https://zt.vault12.com) that runs the stable build of Zax Dashboard. For testing purposes expiration of any communication on that relay is set to *30 minutes*.
34
+
35
+ You can also check the latest build of `master` branch on [Github Pages](https://vault12.github.io/zax-dashboard/).
36
+
37
+ ## Features
38
+
39
+ - Create mailboxes
40
+ - Send and receive end-to-end encrypted messages between mailboxes
41
+ - Send and receive encrypted files via [Zax 2.0 File Commands](https://github.com/vault12/zax/wiki/Zax-2.0-File-Commands)
42
+ - Switch Zax relays on the fly
43
+
44
+ ## Getting started
45
+
46
+ ### Node.js
47
+
48
+ In order to build and use **Zax Dashboard** from source, you need to have a relatively recent version of [Node.js](https://nodejs.org) installed.
49
+
50
+ ### Installation
51
+
52
+ In a terminal, navigate to the directory in which you'd like to install **Zax Dashboard** and type the following:
53
+
54
+ ```Shell
55
+ # get the source
56
+ git clone git@github.com:vault12/zax-dashboard.git
57
+
58
+ # install dependencies
59
+ cd zax-dashboard
60
+ npm install
61
+
62
+ # run the dev server
63
+ npm run start
64
+ ```
65
+
66
+ Then navigate to `http://localhost:4200` in your browser. The app will automatically reload if you change any of the source files.
67
+
68
+ ## Configuration
69
+
70
+ To change the default relay, modify private `setDefaultRelay()` method of [app.component.ts](https://github.com/vault12/zax-dashboard/blob/master/src/app/app.component.ts). By default, it uses the same domain where Zax Dashboard is running, but falls back to our test server when run on *localhost* or *Github Pages*.
71
+
72
+ ## Build
73
+
74
+ Run `npm run dist` to build the project. The build artifacts will be stored in the `docs/` directory, which serves as a root for [Github Pages](https://vault12.github.io/zax-dashboard/).
75
+
76
+ ## Ecosystem
77
+
78
+ Project | Description
79
+ --- | ---
80
+ [Zax](https://github.com/vault12/zax) | NaCl-based Cryptographic Relay
81
+ [Glow](https://github.com/vault12/glow.ts) | Client library for interacting with Zax Cryptographic Relay
82
+ [TrueEntropy](https://github.com/vault12/TrueEntropy) | High volume thermal entropy generator
83
+
84
+ ## License
85
+
86
+ Zax Dashboard is released under the [MIT License](http://opensource.org/licenses/MIT).
87
+
88
+ ## Legal Reminder
89
+
90
+ Exporting/importing and/or use of strong cryptography software, providing cryptography hooks, or even just communicating technical details about cryptography software is illegal in some parts of the world. If you import this software to your country, re-distribute it from there or even just email technical suggestions or provide source patches to the authors or other people you are strongly advised to pay close attention to any laws or regulations which apply to you. The authors of this software are not liable for any violations you make - it is your responsibility to be aware of and comply with any laws or regulations which apply to you.
@@ -0,0 +1,395 @@
1
+ @angular/common
2
+ MIT
3
+
4
+ @angular/core
5
+ MIT
6
+
7
+ @angular/forms
8
+ MIT
9
+
10
+ @angular/platform-browser
11
+ MIT
12
+
13
+ @angular/router
14
+ MIT
15
+
16
+ async-mutex
17
+ MIT
18
+ The MIT License (MIT)
19
+
20
+ Copyright (c) 2016 Christian Speckner <cnspeckn@googlemail.com>
21
+
22
+ Permission is hereby granted, free of charge, to any person obtaining a copy
23
+ of this software and associated documentation files (the "Software"), to deal
24
+ in the Software without restriction, including without limitation the rights
25
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
+ copies of the Software, and to permit persons to whom the Software is
27
+ furnished to do so, subject to the following conditions:
28
+
29
+ The above copyright notice and this permission notice shall be included in
30
+ all copies or substantial portions of the Software.
31
+
32
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38
+ THE SOFTWARE.
39
+
40
+
41
+ axios
42
+ MIT
43
+ Copyright (c) 2014-present Matt Zabriskie
44
+
45
+ Permission is hereby granted, free of charge, to any person obtaining a copy
46
+ of this software and associated documentation files (the "Software"), to deal
47
+ in the Software without restriction, including without limitation the rights
48
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
49
+ copies of the Software, and to permit persons to whom the Software is
50
+ furnished to do so, subject to the following conditions:
51
+
52
+ The above copyright notice and this permission notice shall be included in
53
+ all copies or substantial portions of the Software.
54
+
55
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
56
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
57
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
58
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
59
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
60
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
61
+ THE SOFTWARE.
62
+
63
+
64
+ bootswatch
65
+ MIT
66
+ The MIT License (MIT)
67
+
68
+ Copyright (c) 2013 Thomas Park
69
+
70
+ Permission is hereby granted, free of charge, to any person obtaining a copy
71
+ of this software and associated documentation files (the "Software"), to deal
72
+ in the Software without restriction, including without limitation the rights
73
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74
+ copies of the Software, and to permit persons to whom the Software is
75
+ furnished to do so, subject to the following conditions:
76
+
77
+ The above copyright notice and this permission notice shall be included in
78
+ all copies or substantial portions of the Software.
79
+
80
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
86
+ THE SOFTWARE.
87
+
88
+
89
+ glow.ts
90
+ MIT
91
+ The MIT License (MIT)
92
+
93
+ Copyright (c) 2017 Vault12, Inc.
94
+
95
+ Permission is hereby granted, free of charge, to any person obtaining a copy
96
+ of this software and associated documentation files (the "Software"), to deal
97
+ in the Software without restriction, including without limitation the rights
98
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
+ copies of the Software, and to permit persons to whom the Software is
100
+ furnished to do so, subject to the following conditions:
101
+
102
+ The above copyright notice and this permission notice shall be included in all
103
+ copies or substantial portions of the Software.
104
+
105
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
106
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
107
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
108
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
109
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
110
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
111
+ SOFTWARE.
112
+
113
+ js-sha256
114
+ MIT
115
+ Copyright (c) 2014-2017 Chen, Yi-Cyuan
116
+
117
+ MIT License
118
+
119
+ Permission is hereby granted, free of charge, to any person obtaining
120
+ a copy of this software and associated documentation files (the
121
+ "Software"), to deal in the Software without restriction, including
122
+ without limitation the rights to use, copy, modify, merge, publish,
123
+ distribute, sublicense, and/or sell copies of the Software, and to
124
+ permit persons to whom the Software is furnished to do so, subject to
125
+ the following conditions:
126
+
127
+ The above copyright notice and this permission notice shall be
128
+ included in all copies or substantial portions of the Software.
129
+
130
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
131
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
132
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
133
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
134
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
135
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
136
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
137
+
138
+
139
+ rxjs
140
+ Apache-2.0
141
+ Apache License
142
+ Version 2.0, January 2004
143
+ http://www.apache.org/licenses/
144
+
145
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
146
+
147
+ 1. Definitions.
148
+
149
+ "License" shall mean the terms and conditions for use, reproduction,
150
+ and distribution as defined by Sections 1 through 9 of this document.
151
+
152
+ "Licensor" shall mean the copyright owner or entity authorized by
153
+ the copyright owner that is granting the License.
154
+
155
+ "Legal Entity" shall mean the union of the acting entity and all
156
+ other entities that control, are controlled by, or are under common
157
+ control with that entity. For the purposes of this definition,
158
+ "control" means (i) the power, direct or indirect, to cause the
159
+ direction or management of such entity, whether by contract or
160
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
161
+ outstanding shares, or (iii) beneficial ownership of such entity.
162
+
163
+ "You" (or "Your") shall mean an individual or Legal Entity
164
+ exercising permissions granted by this License.
165
+
166
+ "Source" form shall mean the preferred form for making modifications,
167
+ including but not limited to software source code, documentation
168
+ source, and configuration files.
169
+
170
+ "Object" form shall mean any form resulting from mechanical
171
+ transformation or translation of a Source form, including but
172
+ not limited to compiled object code, generated documentation,
173
+ and conversions to other media types.
174
+
175
+ "Work" shall mean the work of authorship, whether in Source or
176
+ Object form, made available under the License, as indicated by a
177
+ copyright notice that is included in or attached to the work
178
+ (an example is provided in the Appendix below).
179
+
180
+ "Derivative Works" shall mean any work, whether in Source or Object
181
+ form, that is based on (or derived from) the Work and for which the
182
+ editorial revisions, annotations, elaborations, or other modifications
183
+ represent, as a whole, an original work of authorship. For the purposes
184
+ of this License, Derivative Works shall not include works that remain
185
+ separable from, or merely link (or bind by name) to the interfaces of,
186
+ the Work and Derivative Works thereof.
187
+
188
+ "Contribution" shall mean any work of authorship, including
189
+ the original version of the Work and any modifications or additions
190
+ to that Work or Derivative Works thereof, that is intentionally
191
+ submitted to Licensor for inclusion in the Work by the copyright owner
192
+ or by an individual or Legal Entity authorized to submit on behalf of
193
+ the copyright owner. For the purposes of this definition, "submitted"
194
+ means any form of electronic, verbal, or written communication sent
195
+ to the Licensor or its representatives, including but not limited to
196
+ communication on electronic mailing lists, source code control systems,
197
+ and issue tracking systems that are managed by, or on behalf of, the
198
+ Licensor for the purpose of discussing and improving the Work, but
199
+ excluding communication that is conspicuously marked or otherwise
200
+ designated in writing by the copyright owner as "Not a Contribution."
201
+
202
+ "Contributor" shall mean Licensor and any individual or Legal Entity
203
+ on behalf of whom a Contribution has been received by Licensor and
204
+ subsequently incorporated within the Work.
205
+
206
+ 2. Grant of Copyright License. Subject to the terms and conditions of
207
+ this License, each Contributor hereby grants to You a perpetual,
208
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
209
+ copyright license to reproduce, prepare Derivative Works of,
210
+ publicly display, publicly perform, sublicense, and distribute the
211
+ Work and such Derivative Works in Source or Object form.
212
+
213
+ 3. Grant of Patent License. Subject to the terms and conditions of
214
+ this License, each Contributor hereby grants to You a perpetual,
215
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
216
+ (except as stated in this section) patent license to make, have made,
217
+ use, offer to sell, sell, import, and otherwise transfer the Work,
218
+ where such license applies only to those patent claims licensable
219
+ by such Contributor that are necessarily infringed by their
220
+ Contribution(s) alone or by combination of their Contribution(s)
221
+ with the Work to which such Contribution(s) was submitted. If You
222
+ institute patent litigation against any entity (including a
223
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
224
+ or a Contribution incorporated within the Work constitutes direct
225
+ or contributory patent infringement, then any patent licenses
226
+ granted to You under this License for that Work shall terminate
227
+ as of the date such litigation is filed.
228
+
229
+ 4. Redistribution. You may reproduce and distribute copies of the
230
+ Work or Derivative Works thereof in any medium, with or without
231
+ modifications, and in Source or Object form, provided that You
232
+ meet the following conditions:
233
+
234
+ (a) You must give any other recipients of the Work or
235
+ Derivative Works a copy of this License; and
236
+
237
+ (b) You must cause any modified files to carry prominent notices
238
+ stating that You changed the files; and
239
+
240
+ (c) You must retain, in the Source form of any Derivative Works
241
+ that You distribute, all copyright, patent, trademark, and
242
+ attribution notices from the Source form of the Work,
243
+ excluding those notices that do not pertain to any part of
244
+ the Derivative Works; and
245
+
246
+ (d) If the Work includes a "NOTICE" text file as part of its
247
+ distribution, then any Derivative Works that You distribute must
248
+ include a readable copy of the attribution notices contained
249
+ within such NOTICE file, excluding those notices that do not
250
+ pertain to any part of the Derivative Works, in at least one
251
+ of the following places: within a NOTICE text file distributed
252
+ as part of the Derivative Works; within the Source form or
253
+ documentation, if provided along with the Derivative Works; or,
254
+ within a display generated by the Derivative Works, if and
255
+ wherever such third-party notices normally appear. The contents
256
+ of the NOTICE file are for informational purposes only and
257
+ do not modify the License. You may add Your own attribution
258
+ notices within Derivative Works that You distribute, alongside
259
+ or as an addendum to the NOTICE text from the Work, provided
260
+ that such additional attribution notices cannot be construed
261
+ as modifying the License.
262
+
263
+ You may add Your own copyright statement to Your modifications and
264
+ may provide additional or different license terms and conditions
265
+ for use, reproduction, or distribution of Your modifications, or
266
+ for any such Derivative Works as a whole, provided Your use,
267
+ reproduction, and distribution of the Work otherwise complies with
268
+ the conditions stated in this License.
269
+
270
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
271
+ any Contribution intentionally submitted for inclusion in the Work
272
+ by You to the Licensor shall be under the terms and conditions of
273
+ this License, without any additional terms or conditions.
274
+ Notwithstanding the above, nothing herein shall supersede or modify
275
+ the terms of any separate license agreement you may have executed
276
+ with Licensor regarding such Contributions.
277
+
278
+ 6. Trademarks. This License does not grant permission to use the trade
279
+ names, trademarks, service marks, or product names of the Licensor,
280
+ except as required for reasonable and customary use in describing the
281
+ origin of the Work and reproducing the content of the NOTICE file.
282
+
283
+ 7. Disclaimer of Warranty. Unless required by applicable law or
284
+ agreed to in writing, Licensor provides the Work (and each
285
+ Contributor provides its Contributions) on an "AS IS" BASIS,
286
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
287
+ implied, including, without limitation, any warranties or conditions
288
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
289
+ PARTICULAR PURPOSE. You are solely responsible for determining the
290
+ appropriateness of using or redistributing the Work and assume any
291
+ risks associated with Your exercise of permissions under this License.
292
+
293
+ 8. Limitation of Liability. In no event and under no legal theory,
294
+ whether in tort (including negligence), contract, or otherwise,
295
+ unless required by applicable law (such as deliberate and grossly
296
+ negligent acts) or agreed to in writing, shall any Contributor be
297
+ liable to You for damages, including any direct, indirect, special,
298
+ incidental, or consequential damages of any character arising as a
299
+ result of this License or out of the use or inability to use the
300
+ Work (including but not limited to damages for loss of goodwill,
301
+ work stoppage, computer failure or malfunction, or any and all
302
+ other commercial damages or losses), even if such Contributor
303
+ has been advised of the possibility of such damages.
304
+
305
+ 9. Accepting Warranty or Additional Liability. While redistributing
306
+ the Work or Derivative Works thereof, You may choose to offer,
307
+ and charge a fee for, acceptance of support, warranty, indemnity,
308
+ or other liability obligations and/or rights consistent with this
309
+ License. However, in accepting such obligations, You may act only
310
+ on Your own behalf and on Your sole responsibility, not on behalf
311
+ of any other Contributor, and only if You agree to indemnify,
312
+ defend, and hold each Contributor harmless for any liability
313
+ incurred by, or claims asserted against, such Contributor by reason
314
+ of your accepting any such warranty or additional liability.
315
+
316
+ END OF TERMS AND CONDITIONS
317
+
318
+ APPENDIX: How to apply the Apache License to your work.
319
+
320
+ To apply the Apache License to your work, attach the following
321
+ boilerplate notice, with the fields enclosed by brackets "[]"
322
+ replaced with your own identifying information. (Don't include
323
+ the brackets!) The text should be enclosed in the appropriate
324
+ comment syntax for the file format. We also recommend that a
325
+ file or class name and description of purpose be included on the
326
+ same "printed page" as the copyright notice for easier
327
+ identification within third-party archives.
328
+
329
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
330
+
331
+ Licensed under the Apache License, Version 2.0 (the "License");
332
+ you may not use this file except in compliance with the License.
333
+ You may obtain a copy of the License at
334
+
335
+ http://www.apache.org/licenses/LICENSE-2.0
336
+
337
+ Unless required by applicable law or agreed to in writing, software
338
+ distributed under the License is distributed on an "AS IS" BASIS,
339
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
340
+ See the License for the specific language governing permissions and
341
+ limitations under the License.
342
+
343
+
344
+
345
+ tweetnacl
346
+ Unlicense
347
+ This is free and unencumbered software released into the public domain.
348
+
349
+ Anyone is free to copy, modify, publish, use, compile, sell, or
350
+ distribute this software, either in source code form or as a compiled
351
+ binary, for any purpose, commercial or non-commercial, and by any
352
+ means.
353
+
354
+ In jurisdictions that recognize copyright laws, the author or authors
355
+ of this software dedicate any and all copyright interest in the
356
+ software to the public domain. We make this dedication for the benefit
357
+ of the public at large and to the detriment of our heirs and
358
+ successors. We intend this dedication to be an overt act of
359
+ relinquishment in perpetuity of all present and future rights to this
360
+ software under copyright law.
361
+
362
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
363
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
364
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
365
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
366
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
367
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
368
+ OTHER DEALINGS IN THE SOFTWARE.
369
+
370
+ For more information, please refer to <http://unlicense.org>
371
+
372
+
373
+ zone.js
374
+ MIT
375
+ The MIT License
376
+
377
+ Copyright (c) 2010-2023 Google LLC. https://angular.io/license
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.