Commit
·
e4e9fbf
0
Parent(s):
Duplicate from jbilcke-hf/AI-WebTV
Browse filesCo-authored-by: Julian Bilcke <[email protected]>
- .dockerignore +6 -0
- .gitignore +9 -0
- .nvmrc +1 -0
- Dockerfile +35 -0
- LICENSE.txt +201 -0
- README.md +45 -0
- package-lock.json +937 -0
- package.json +21 -0
- public/hf-logo.png +0 -0
- public/index.html +325 -0
- public/mpegts.js +0 -0
- src/index.mts +24 -0
- tsconfig.json +12 -0
.dockerignore
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
node_modules
|
| 2 |
+
npm-debug.log
|
| 3 |
+
models
|
| 4 |
+
sandbox
|
| 5 |
+
audio.pipe
|
| 6 |
+
video.pipe
|
.gitignore
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
node_modules
|
| 2 |
+
*.log
|
| 3 |
+
*.bin
|
| 4 |
+
.DS_Store
|
| 5 |
+
.venv
|
| 6 |
+
models/
|
| 7 |
+
sandbox/
|
| 8 |
+
audio.pipe
|
| 9 |
+
video.pipe
|
.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
v18.16.0
|
Dockerfile
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM node:18
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
ARG DEBIAN_FRONTEND=noninteractive
|
| 5 |
+
|
| 6 |
+
RUN apt update
|
| 7 |
+
|
| 8 |
+
RUN apt --yes install ffmpeg
|
| 9 |
+
|
| 10 |
+
# Set up a new user named "user" with user ID 1000
|
| 11 |
+
RUN useradd -o -u 1000 user
|
| 12 |
+
|
| 13 |
+
# Switch to the "user" user
|
| 14 |
+
USER user
|
| 15 |
+
|
| 16 |
+
# Set home to the user's home directory
|
| 17 |
+
ENV HOME=/home/user \
|
| 18 |
+
PATH=/home/user/.local/bin:$PATH
|
| 19 |
+
|
| 20 |
+
# Set the working directory to the user's home directory
|
| 21 |
+
WORKDIR $HOME/app
|
| 22 |
+
|
| 23 |
+
# Install app dependencies
|
| 24 |
+
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
| 25 |
+
# where available (npm@5+)
|
| 26 |
+
COPY --chown=user package*.json $HOME/app
|
| 27 |
+
|
| 28 |
+
RUN npm install
|
| 29 |
+
|
| 30 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 31 |
+
COPY --chown=user . $HOME/app
|
| 32 |
+
|
| 33 |
+
EXPOSE 7860 1935 8000
|
| 34 |
+
|
| 35 |
+
CMD [ "npm", "run", "start" ]
|
LICENSE.txt
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright [yyyy] [name of copyright owner]
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AI WebTV
|
| 3 |
+
emoji: 🔮
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: white
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
app_port: 7860
|
| 9 |
+
duplicated_from: jbilcke-hf/AI-WebTV
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
A generative AI WebTV, powered by Zeroscope and Hugging Face.
|
| 13 |
+
|
| 14 |
+
This is just the frontend part, you will need the media-server (also open source) to make it work.
|
| 15 |
+
|
| 16 |
+
Warning: this is an experimental, proof-of-concept project made in a few days.
|
| 17 |
+
|
| 18 |
+
It is not ready for production use by other people! Also, this use models that should only be used for research purposes (no commercial usage).
|
| 19 |
+
|
| 20 |
+
Note: because the stream uses FLV, it doesn't work on iPhone. There is however a [Twitch mirror here](https://www.twitch.tv/ai_webtv).
|
| 21 |
+
|
| 22 |
+
The main code of the webtv is located inside the [media-server](https://huggingface.co/spaces/jbilcke-hf/media-server/tree/main) :
|
| 23 |
+
|
| 24 |
+
manual steps:
|
| 25 |
+
- human input to write a short paragraph describing a multi-shot video sequence
|
| 26 |
+
- manual submit it to GPT-4 to generate a list of video captions for each shot (the system instructions are extracts from a stable diffusion guide)
|
| 27 |
+
- commit the captions to the [playlist database](https://huggingface.co/spaces/jbilcke-hf/media-server/raw/main/database.json)
|
| 28 |
+
|
| 29 |
+
Inside the `media-server` space (generation process running in the background):
|
| 30 |
+
- for each prompt in the database
|
| 31 |
+
- generate a silent 3 seconds video clip with Zeroscope V2 576w (hosted on Hugging Face Spaces)
|
| 32 |
+
- upscale the clip with Zeroscope V2 XL (also a HF Space)
|
| 33 |
+
- perform frame interpolation with FILM (also a HF Space)
|
| 34 |
+
- storage in the Persistent Storage of the media-server Space
|
| 35 |
+
|
| 36 |
+
Inside the `media-server` space (streaming process running in the foreground):
|
| 37 |
+
- for each video file in the persistent storage folder
|
| 38 |
+
- add it to a new FFmpeg playlist (it's just a .txt file)
|
| 39 |
+
- broadcast it over the RTMP protocol using FFmpeg (in FLV format)
|
| 40 |
+
- diffusion of the stream using node-media-server
|
| 41 |
+
|
| 42 |
+
Inside the `AI-WebTV` space:
|
| 43 |
+
- display the stream using `mpegts.js`
|
| 44 |
+
- this doesn't work on iPhone, but now there is also a Twitch mirror
|
| 45 |
+
|
package-lock.json
ADDED
|
@@ -0,0 +1,937 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "ai-webtv",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"lockfileVersion": 3,
|
| 5 |
+
"requires": true,
|
| 6 |
+
"packages": {
|
| 7 |
+
"": {
|
| 8 |
+
"name": "ai-webtv",
|
| 9 |
+
"version": "1.0.0",
|
| 10 |
+
"license": "Apache License",
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"@types/express": "^4.17.17",
|
| 13 |
+
"express": "^4.18.2",
|
| 14 |
+
"node-fetch": "^3.3.1",
|
| 15 |
+
"ts-node": "^10.9.1"
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
"node_modules/@cspotcode/source-map-support": {
|
| 19 |
+
"version": "0.8.1",
|
| 20 |
+
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
| 21 |
+
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
| 22 |
+
"dependencies": {
|
| 23 |
+
"@jridgewell/trace-mapping": "0.3.9"
|
| 24 |
+
},
|
| 25 |
+
"engines": {
|
| 26 |
+
"node": ">=12"
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"node_modules/@jridgewell/resolve-uri": {
|
| 30 |
+
"version": "3.1.1",
|
| 31 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
|
| 32 |
+
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
|
| 33 |
+
"engines": {
|
| 34 |
+
"node": ">=6.0.0"
|
| 35 |
+
}
|
| 36 |
+
},
|
| 37 |
+
"node_modules/@jridgewell/sourcemap-codec": {
|
| 38 |
+
"version": "1.4.15",
|
| 39 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
| 40 |
+
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
|
| 41 |
+
},
|
| 42 |
+
"node_modules/@jridgewell/trace-mapping": {
|
| 43 |
+
"version": "0.3.9",
|
| 44 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
| 45 |
+
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
| 46 |
+
"dependencies": {
|
| 47 |
+
"@jridgewell/resolve-uri": "^3.0.3",
|
| 48 |
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
| 49 |
+
}
|
| 50 |
+
},
|
| 51 |
+
"node_modules/@tsconfig/node10": {
|
| 52 |
+
"version": "1.0.9",
|
| 53 |
+
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz",
|
| 54 |
+
"integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA=="
|
| 55 |
+
},
|
| 56 |
+
"node_modules/@tsconfig/node12": {
|
| 57 |
+
"version": "1.0.11",
|
| 58 |
+
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
|
| 59 |
+
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag=="
|
| 60 |
+
},
|
| 61 |
+
"node_modules/@tsconfig/node14": {
|
| 62 |
+
"version": "1.0.3",
|
| 63 |
+
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
|
| 64 |
+
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow=="
|
| 65 |
+
},
|
| 66 |
+
"node_modules/@tsconfig/node16": {
|
| 67 |
+
"version": "1.0.4",
|
| 68 |
+
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
|
| 69 |
+
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="
|
| 70 |
+
},
|
| 71 |
+
"node_modules/@types/body-parser": {
|
| 72 |
+
"version": "1.19.2",
|
| 73 |
+
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
|
| 74 |
+
"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
|
| 75 |
+
"dependencies": {
|
| 76 |
+
"@types/connect": "*",
|
| 77 |
+
"@types/node": "*"
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"node_modules/@types/connect": {
|
| 81 |
+
"version": "3.4.35",
|
| 82 |
+
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
|
| 83 |
+
"integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
|
| 84 |
+
"dependencies": {
|
| 85 |
+
"@types/node": "*"
|
| 86 |
+
}
|
| 87 |
+
},
|
| 88 |
+
"node_modules/@types/express": {
|
| 89 |
+
"version": "4.17.17",
|
| 90 |
+
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
|
| 91 |
+
"integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
|
| 92 |
+
"dependencies": {
|
| 93 |
+
"@types/body-parser": "*",
|
| 94 |
+
"@types/express-serve-static-core": "^4.17.33",
|
| 95 |
+
"@types/qs": "*",
|
| 96 |
+
"@types/serve-static": "*"
|
| 97 |
+
}
|
| 98 |
+
},
|
| 99 |
+
"node_modules/@types/express-serve-static-core": {
|
| 100 |
+
"version": "4.17.35",
|
| 101 |
+
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz",
|
| 102 |
+
"integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==",
|
| 103 |
+
"dependencies": {
|
| 104 |
+
"@types/node": "*",
|
| 105 |
+
"@types/qs": "*",
|
| 106 |
+
"@types/range-parser": "*",
|
| 107 |
+
"@types/send": "*"
|
| 108 |
+
}
|
| 109 |
+
},
|
| 110 |
+
"node_modules/@types/http-errors": {
|
| 111 |
+
"version": "2.0.1",
|
| 112 |
+
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz",
|
| 113 |
+
"integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ=="
|
| 114 |
+
},
|
| 115 |
+
"node_modules/@types/mime": {
|
| 116 |
+
"version": "1.3.2",
|
| 117 |
+
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
|
| 118 |
+
"integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="
|
| 119 |
+
},
|
| 120 |
+
"node_modules/@types/node": {
|
| 121 |
+
"version": "20.3.2",
|
| 122 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz",
|
| 123 |
+
"integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw=="
|
| 124 |
+
},
|
| 125 |
+
"node_modules/@types/qs": {
|
| 126 |
+
"version": "6.9.7",
|
| 127 |
+
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
|
| 128 |
+
"integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
|
| 129 |
+
},
|
| 130 |
+
"node_modules/@types/range-parser": {
|
| 131 |
+
"version": "1.2.4",
|
| 132 |
+
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
|
| 133 |
+
"integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
|
| 134 |
+
},
|
| 135 |
+
"node_modules/@types/send": {
|
| 136 |
+
"version": "0.17.1",
|
| 137 |
+
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz",
|
| 138 |
+
"integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
|
| 139 |
+
"dependencies": {
|
| 140 |
+
"@types/mime": "^1",
|
| 141 |
+
"@types/node": "*"
|
| 142 |
+
}
|
| 143 |
+
},
|
| 144 |
+
"node_modules/@types/serve-static": {
|
| 145 |
+
"version": "1.15.2",
|
| 146 |
+
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz",
|
| 147 |
+
"integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==",
|
| 148 |
+
"dependencies": {
|
| 149 |
+
"@types/http-errors": "*",
|
| 150 |
+
"@types/mime": "*",
|
| 151 |
+
"@types/node": "*"
|
| 152 |
+
}
|
| 153 |
+
},
|
| 154 |
+
"node_modules/accepts": {
|
| 155 |
+
"version": "1.3.8",
|
| 156 |
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
| 157 |
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
| 158 |
+
"dependencies": {
|
| 159 |
+
"mime-types": "~2.1.34",
|
| 160 |
+
"negotiator": "0.6.3"
|
| 161 |
+
},
|
| 162 |
+
"engines": {
|
| 163 |
+
"node": ">= 0.6"
|
| 164 |
+
}
|
| 165 |
+
},
|
| 166 |
+
"node_modules/acorn": {
|
| 167 |
+
"version": "8.9.0",
|
| 168 |
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz",
|
| 169 |
+
"integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==",
|
| 170 |
+
"bin": {
|
| 171 |
+
"acorn": "bin/acorn"
|
| 172 |
+
},
|
| 173 |
+
"engines": {
|
| 174 |
+
"node": ">=0.4.0"
|
| 175 |
+
}
|
| 176 |
+
},
|
| 177 |
+
"node_modules/acorn-walk": {
|
| 178 |
+
"version": "8.2.0",
|
| 179 |
+
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
|
| 180 |
+
"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
|
| 181 |
+
"engines": {
|
| 182 |
+
"node": ">=0.4.0"
|
| 183 |
+
}
|
| 184 |
+
},
|
| 185 |
+
"node_modules/arg": {
|
| 186 |
+
"version": "4.1.3",
|
| 187 |
+
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
|
| 188 |
+
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
|
| 189 |
+
},
|
| 190 |
+
"node_modules/array-flatten": {
|
| 191 |
+
"version": "1.1.1",
|
| 192 |
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
| 193 |
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
|
| 194 |
+
},
|
| 195 |
+
"node_modules/body-parser": {
|
| 196 |
+
"version": "1.20.1",
|
| 197 |
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
|
| 198 |
+
"integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
|
| 199 |
+
"dependencies": {
|
| 200 |
+
"bytes": "3.1.2",
|
| 201 |
+
"content-type": "~1.0.4",
|
| 202 |
+
"debug": "2.6.9",
|
| 203 |
+
"depd": "2.0.0",
|
| 204 |
+
"destroy": "1.2.0",
|
| 205 |
+
"http-errors": "2.0.0",
|
| 206 |
+
"iconv-lite": "0.4.24",
|
| 207 |
+
"on-finished": "2.4.1",
|
| 208 |
+
"qs": "6.11.0",
|
| 209 |
+
"raw-body": "2.5.1",
|
| 210 |
+
"type-is": "~1.6.18",
|
| 211 |
+
"unpipe": "1.0.0"
|
| 212 |
+
},
|
| 213 |
+
"engines": {
|
| 214 |
+
"node": ">= 0.8",
|
| 215 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
| 216 |
+
}
|
| 217 |
+
},
|
| 218 |
+
"node_modules/bytes": {
|
| 219 |
+
"version": "3.1.2",
|
| 220 |
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
| 221 |
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
| 222 |
+
"engines": {
|
| 223 |
+
"node": ">= 0.8"
|
| 224 |
+
}
|
| 225 |
+
},
|
| 226 |
+
"node_modules/call-bind": {
|
| 227 |
+
"version": "1.0.2",
|
| 228 |
+
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
| 229 |
+
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
| 230 |
+
"dependencies": {
|
| 231 |
+
"function-bind": "^1.1.1",
|
| 232 |
+
"get-intrinsic": "^1.0.2"
|
| 233 |
+
},
|
| 234 |
+
"funding": {
|
| 235 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 236 |
+
}
|
| 237 |
+
},
|
| 238 |
+
"node_modules/content-disposition": {
|
| 239 |
+
"version": "0.5.4",
|
| 240 |
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
| 241 |
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
| 242 |
+
"dependencies": {
|
| 243 |
+
"safe-buffer": "5.2.1"
|
| 244 |
+
},
|
| 245 |
+
"engines": {
|
| 246 |
+
"node": ">= 0.6"
|
| 247 |
+
}
|
| 248 |
+
},
|
| 249 |
+
"node_modules/content-type": {
|
| 250 |
+
"version": "1.0.5",
|
| 251 |
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
| 252 |
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
| 253 |
+
"engines": {
|
| 254 |
+
"node": ">= 0.6"
|
| 255 |
+
}
|
| 256 |
+
},
|
| 257 |
+
"node_modules/cookie": {
|
| 258 |
+
"version": "0.5.0",
|
| 259 |
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
|
| 260 |
+
"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
|
| 261 |
+
"engines": {
|
| 262 |
+
"node": ">= 0.6"
|
| 263 |
+
}
|
| 264 |
+
},
|
| 265 |
+
"node_modules/cookie-signature": {
|
| 266 |
+
"version": "1.0.6",
|
| 267 |
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
| 268 |
+
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
|
| 269 |
+
},
|
| 270 |
+
"node_modules/create-require": {
|
| 271 |
+
"version": "1.1.1",
|
| 272 |
+
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
| 273 |
+
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="
|
| 274 |
+
},
|
| 275 |
+
"node_modules/data-uri-to-buffer": {
|
| 276 |
+
"version": "4.0.1",
|
| 277 |
+
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
|
| 278 |
+
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
|
| 279 |
+
"engines": {
|
| 280 |
+
"node": ">= 12"
|
| 281 |
+
}
|
| 282 |
+
},
|
| 283 |
+
"node_modules/debug": {
|
| 284 |
+
"version": "2.6.9",
|
| 285 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 286 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 287 |
+
"dependencies": {
|
| 288 |
+
"ms": "2.0.0"
|
| 289 |
+
}
|
| 290 |
+
},
|
| 291 |
+
"node_modules/depd": {
|
| 292 |
+
"version": "2.0.0",
|
| 293 |
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
| 294 |
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
| 295 |
+
"engines": {
|
| 296 |
+
"node": ">= 0.8"
|
| 297 |
+
}
|
| 298 |
+
},
|
| 299 |
+
"node_modules/destroy": {
|
| 300 |
+
"version": "1.2.0",
|
| 301 |
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
| 302 |
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
| 303 |
+
"engines": {
|
| 304 |
+
"node": ">= 0.8",
|
| 305 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
| 306 |
+
}
|
| 307 |
+
},
|
| 308 |
+
"node_modules/diff": {
|
| 309 |
+
"version": "4.0.2",
|
| 310 |
+
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
|
| 311 |
+
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
|
| 312 |
+
"engines": {
|
| 313 |
+
"node": ">=0.3.1"
|
| 314 |
+
}
|
| 315 |
+
},
|
| 316 |
+
"node_modules/ee-first": {
|
| 317 |
+
"version": "1.1.1",
|
| 318 |
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
| 319 |
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
|
| 320 |
+
},
|
| 321 |
+
"node_modules/encodeurl": {
|
| 322 |
+
"version": "1.0.2",
|
| 323 |
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
| 324 |
+
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
|
| 325 |
+
"engines": {
|
| 326 |
+
"node": ">= 0.8"
|
| 327 |
+
}
|
| 328 |
+
},
|
| 329 |
+
"node_modules/escape-html": {
|
| 330 |
+
"version": "1.0.3",
|
| 331 |
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
| 332 |
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
|
| 333 |
+
},
|
| 334 |
+
"node_modules/etag": {
|
| 335 |
+
"version": "1.8.1",
|
| 336 |
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
| 337 |
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
| 338 |
+
"engines": {
|
| 339 |
+
"node": ">= 0.6"
|
| 340 |
+
}
|
| 341 |
+
},
|
| 342 |
+
"node_modules/express": {
|
| 343 |
+
"version": "4.18.2",
|
| 344 |
+
"resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
|
| 345 |
+
"integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
|
| 346 |
+
"dependencies": {
|
| 347 |
+
"accepts": "~1.3.8",
|
| 348 |
+
"array-flatten": "1.1.1",
|
| 349 |
+
"body-parser": "1.20.1",
|
| 350 |
+
"content-disposition": "0.5.4",
|
| 351 |
+
"content-type": "~1.0.4",
|
| 352 |
+
"cookie": "0.5.0",
|
| 353 |
+
"cookie-signature": "1.0.6",
|
| 354 |
+
"debug": "2.6.9",
|
| 355 |
+
"depd": "2.0.0",
|
| 356 |
+
"encodeurl": "~1.0.2",
|
| 357 |
+
"escape-html": "~1.0.3",
|
| 358 |
+
"etag": "~1.8.1",
|
| 359 |
+
"finalhandler": "1.2.0",
|
| 360 |
+
"fresh": "0.5.2",
|
| 361 |
+
"http-errors": "2.0.0",
|
| 362 |
+
"merge-descriptors": "1.0.1",
|
| 363 |
+
"methods": "~1.1.2",
|
| 364 |
+
"on-finished": "2.4.1",
|
| 365 |
+
"parseurl": "~1.3.3",
|
| 366 |
+
"path-to-regexp": "0.1.7",
|
| 367 |
+
"proxy-addr": "~2.0.7",
|
| 368 |
+
"qs": "6.11.0",
|
| 369 |
+
"range-parser": "~1.2.1",
|
| 370 |
+
"safe-buffer": "5.2.1",
|
| 371 |
+
"send": "0.18.0",
|
| 372 |
+
"serve-static": "1.15.0",
|
| 373 |
+
"setprototypeof": "1.2.0",
|
| 374 |
+
"statuses": "2.0.1",
|
| 375 |
+
"type-is": "~1.6.18",
|
| 376 |
+
"utils-merge": "1.0.1",
|
| 377 |
+
"vary": "~1.1.2"
|
| 378 |
+
},
|
| 379 |
+
"engines": {
|
| 380 |
+
"node": ">= 0.10.0"
|
| 381 |
+
}
|
| 382 |
+
},
|
| 383 |
+
"node_modules/fetch-blob": {
|
| 384 |
+
"version": "3.2.0",
|
| 385 |
+
"resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
|
| 386 |
+
"integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
|
| 387 |
+
"funding": [
|
| 388 |
+
{
|
| 389 |
+
"type": "github",
|
| 390 |
+
"url": "https://github.com/sponsors/jimmywarting"
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"type": "paypal",
|
| 394 |
+
"url": "https://paypal.me/jimmywarting"
|
| 395 |
+
}
|
| 396 |
+
],
|
| 397 |
+
"dependencies": {
|
| 398 |
+
"node-domexception": "^1.0.0",
|
| 399 |
+
"web-streams-polyfill": "^3.0.3"
|
| 400 |
+
},
|
| 401 |
+
"engines": {
|
| 402 |
+
"node": "^12.20 || >= 14.13"
|
| 403 |
+
}
|
| 404 |
+
},
|
| 405 |
+
"node_modules/finalhandler": {
|
| 406 |
+
"version": "1.2.0",
|
| 407 |
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
|
| 408 |
+
"integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
|
| 409 |
+
"dependencies": {
|
| 410 |
+
"debug": "2.6.9",
|
| 411 |
+
"encodeurl": "~1.0.2",
|
| 412 |
+
"escape-html": "~1.0.3",
|
| 413 |
+
"on-finished": "2.4.1",
|
| 414 |
+
"parseurl": "~1.3.3",
|
| 415 |
+
"statuses": "2.0.1",
|
| 416 |
+
"unpipe": "~1.0.0"
|
| 417 |
+
},
|
| 418 |
+
"engines": {
|
| 419 |
+
"node": ">= 0.8"
|
| 420 |
+
}
|
| 421 |
+
},
|
| 422 |
+
"node_modules/formdata-polyfill": {
|
| 423 |
+
"version": "4.0.10",
|
| 424 |
+
"resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
|
| 425 |
+
"integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
|
| 426 |
+
"dependencies": {
|
| 427 |
+
"fetch-blob": "^3.1.2"
|
| 428 |
+
},
|
| 429 |
+
"engines": {
|
| 430 |
+
"node": ">=12.20.0"
|
| 431 |
+
}
|
| 432 |
+
},
|
| 433 |
+
"node_modules/forwarded": {
|
| 434 |
+
"version": "0.2.0",
|
| 435 |
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
| 436 |
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
| 437 |
+
"engines": {
|
| 438 |
+
"node": ">= 0.6"
|
| 439 |
+
}
|
| 440 |
+
},
|
| 441 |
+
"node_modules/fresh": {
|
| 442 |
+
"version": "0.5.2",
|
| 443 |
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
| 444 |
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
| 445 |
+
"engines": {
|
| 446 |
+
"node": ">= 0.6"
|
| 447 |
+
}
|
| 448 |
+
},
|
| 449 |
+
"node_modules/function-bind": {
|
| 450 |
+
"version": "1.1.1",
|
| 451 |
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
| 452 |
+
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
| 453 |
+
},
|
| 454 |
+
"node_modules/get-intrinsic": {
|
| 455 |
+
"version": "1.2.1",
|
| 456 |
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
|
| 457 |
+
"integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
|
| 458 |
+
"dependencies": {
|
| 459 |
+
"function-bind": "^1.1.1",
|
| 460 |
+
"has": "^1.0.3",
|
| 461 |
+
"has-proto": "^1.0.1",
|
| 462 |
+
"has-symbols": "^1.0.3"
|
| 463 |
+
},
|
| 464 |
+
"funding": {
|
| 465 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 466 |
+
}
|
| 467 |
+
},
|
| 468 |
+
"node_modules/has": {
|
| 469 |
+
"version": "1.0.3",
|
| 470 |
+
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
| 471 |
+
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
| 472 |
+
"dependencies": {
|
| 473 |
+
"function-bind": "^1.1.1"
|
| 474 |
+
},
|
| 475 |
+
"engines": {
|
| 476 |
+
"node": ">= 0.4.0"
|
| 477 |
+
}
|
| 478 |
+
},
|
| 479 |
+
"node_modules/has-proto": {
|
| 480 |
+
"version": "1.0.1",
|
| 481 |
+
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
|
| 482 |
+
"integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
|
| 483 |
+
"engines": {
|
| 484 |
+
"node": ">= 0.4"
|
| 485 |
+
},
|
| 486 |
+
"funding": {
|
| 487 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 488 |
+
}
|
| 489 |
+
},
|
| 490 |
+
"node_modules/has-symbols": {
|
| 491 |
+
"version": "1.0.3",
|
| 492 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
|
| 493 |
+
"integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
|
| 494 |
+
"engines": {
|
| 495 |
+
"node": ">= 0.4"
|
| 496 |
+
},
|
| 497 |
+
"funding": {
|
| 498 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 499 |
+
}
|
| 500 |
+
},
|
| 501 |
+
"node_modules/http-errors": {
|
| 502 |
+
"version": "2.0.0",
|
| 503 |
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
| 504 |
+
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
|
| 505 |
+
"dependencies": {
|
| 506 |
+
"depd": "2.0.0",
|
| 507 |
+
"inherits": "2.0.4",
|
| 508 |
+
"setprototypeof": "1.2.0",
|
| 509 |
+
"statuses": "2.0.1",
|
| 510 |
+
"toidentifier": "1.0.1"
|
| 511 |
+
},
|
| 512 |
+
"engines": {
|
| 513 |
+
"node": ">= 0.8"
|
| 514 |
+
}
|
| 515 |
+
},
|
| 516 |
+
"node_modules/iconv-lite": {
|
| 517 |
+
"version": "0.4.24",
|
| 518 |
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
| 519 |
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
| 520 |
+
"dependencies": {
|
| 521 |
+
"safer-buffer": ">= 2.1.2 < 3"
|
| 522 |
+
},
|
| 523 |
+
"engines": {
|
| 524 |
+
"node": ">=0.10.0"
|
| 525 |
+
}
|
| 526 |
+
},
|
| 527 |
+
"node_modules/inherits": {
|
| 528 |
+
"version": "2.0.4",
|
| 529 |
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
| 530 |
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
| 531 |
+
},
|
| 532 |
+
"node_modules/ipaddr.js": {
|
| 533 |
+
"version": "1.9.1",
|
| 534 |
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
| 535 |
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
| 536 |
+
"engines": {
|
| 537 |
+
"node": ">= 0.10"
|
| 538 |
+
}
|
| 539 |
+
},
|
| 540 |
+
"node_modules/make-error": {
|
| 541 |
+
"version": "1.3.6",
|
| 542 |
+
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
|
| 543 |
+
"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="
|
| 544 |
+
},
|
| 545 |
+
"node_modules/media-typer": {
|
| 546 |
+
"version": "0.3.0",
|
| 547 |
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
| 548 |
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
| 549 |
+
"engines": {
|
| 550 |
+
"node": ">= 0.6"
|
| 551 |
+
}
|
| 552 |
+
},
|
| 553 |
+
"node_modules/merge-descriptors": {
|
| 554 |
+
"version": "1.0.1",
|
| 555 |
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
|
| 556 |
+
"integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
|
| 557 |
+
},
|
| 558 |
+
"node_modules/methods": {
|
| 559 |
+
"version": "1.1.2",
|
| 560 |
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
| 561 |
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
| 562 |
+
"engines": {
|
| 563 |
+
"node": ">= 0.6"
|
| 564 |
+
}
|
| 565 |
+
},
|
| 566 |
+
"node_modules/mime": {
|
| 567 |
+
"version": "1.6.0",
|
| 568 |
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
| 569 |
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
| 570 |
+
"bin": {
|
| 571 |
+
"mime": "cli.js"
|
| 572 |
+
},
|
| 573 |
+
"engines": {
|
| 574 |
+
"node": ">=4"
|
| 575 |
+
}
|
| 576 |
+
},
|
| 577 |
+
"node_modules/mime-db": {
|
| 578 |
+
"version": "1.52.0",
|
| 579 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
| 580 |
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
| 581 |
+
"engines": {
|
| 582 |
+
"node": ">= 0.6"
|
| 583 |
+
}
|
| 584 |
+
},
|
| 585 |
+
"node_modules/mime-types": {
|
| 586 |
+
"version": "2.1.35",
|
| 587 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
| 588 |
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
| 589 |
+
"dependencies": {
|
| 590 |
+
"mime-db": "1.52.0"
|
| 591 |
+
},
|
| 592 |
+
"engines": {
|
| 593 |
+
"node": ">= 0.6"
|
| 594 |
+
}
|
| 595 |
+
},
|
| 596 |
+
"node_modules/ms": {
|
| 597 |
+
"version": "2.0.0",
|
| 598 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 599 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
| 600 |
+
},
|
| 601 |
+
"node_modules/negotiator": {
|
| 602 |
+
"version": "0.6.3",
|
| 603 |
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
| 604 |
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
| 605 |
+
"engines": {
|
| 606 |
+
"node": ">= 0.6"
|
| 607 |
+
}
|
| 608 |
+
},
|
| 609 |
+
"node_modules/node-domexception": {
|
| 610 |
+
"version": "1.0.0",
|
| 611 |
+
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
|
| 612 |
+
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
|
| 613 |
+
"funding": [
|
| 614 |
+
{
|
| 615 |
+
"type": "github",
|
| 616 |
+
"url": "https://github.com/sponsors/jimmywarting"
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"type": "github",
|
| 620 |
+
"url": "https://paypal.me/jimmywarting"
|
| 621 |
+
}
|
| 622 |
+
],
|
| 623 |
+
"engines": {
|
| 624 |
+
"node": ">=10.5.0"
|
| 625 |
+
}
|
| 626 |
+
},
|
| 627 |
+
"node_modules/node-fetch": {
|
| 628 |
+
"version": "3.3.1",
|
| 629 |
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz",
|
| 630 |
+
"integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==",
|
| 631 |
+
"dependencies": {
|
| 632 |
+
"data-uri-to-buffer": "^4.0.0",
|
| 633 |
+
"fetch-blob": "^3.1.4",
|
| 634 |
+
"formdata-polyfill": "^4.0.10"
|
| 635 |
+
},
|
| 636 |
+
"engines": {
|
| 637 |
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
| 638 |
+
},
|
| 639 |
+
"funding": {
|
| 640 |
+
"type": "opencollective",
|
| 641 |
+
"url": "https://opencollective.com/node-fetch"
|
| 642 |
+
}
|
| 643 |
+
},
|
| 644 |
+
"node_modules/object-inspect": {
|
| 645 |
+
"version": "1.12.3",
|
| 646 |
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
|
| 647 |
+
"integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
|
| 648 |
+
"funding": {
|
| 649 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 650 |
+
}
|
| 651 |
+
},
|
| 652 |
+
"node_modules/on-finished": {
|
| 653 |
+
"version": "2.4.1",
|
| 654 |
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
| 655 |
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
| 656 |
+
"dependencies": {
|
| 657 |
+
"ee-first": "1.1.1"
|
| 658 |
+
},
|
| 659 |
+
"engines": {
|
| 660 |
+
"node": ">= 0.8"
|
| 661 |
+
}
|
| 662 |
+
},
|
| 663 |
+
"node_modules/parseurl": {
|
| 664 |
+
"version": "1.3.3",
|
| 665 |
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
| 666 |
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
| 667 |
+
"engines": {
|
| 668 |
+
"node": ">= 0.8"
|
| 669 |
+
}
|
| 670 |
+
},
|
| 671 |
+
"node_modules/path-to-regexp": {
|
| 672 |
+
"version": "0.1.7",
|
| 673 |
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
|
| 674 |
+
"integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
|
| 675 |
+
},
|
| 676 |
+
"node_modules/proxy-addr": {
|
| 677 |
+
"version": "2.0.7",
|
| 678 |
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
| 679 |
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
| 680 |
+
"dependencies": {
|
| 681 |
+
"forwarded": "0.2.0",
|
| 682 |
+
"ipaddr.js": "1.9.1"
|
| 683 |
+
},
|
| 684 |
+
"engines": {
|
| 685 |
+
"node": ">= 0.10"
|
| 686 |
+
}
|
| 687 |
+
},
|
| 688 |
+
"node_modules/qs": {
|
| 689 |
+
"version": "6.11.0",
|
| 690 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
|
| 691 |
+
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
|
| 692 |
+
"dependencies": {
|
| 693 |
+
"side-channel": "^1.0.4"
|
| 694 |
+
},
|
| 695 |
+
"engines": {
|
| 696 |
+
"node": ">=0.6"
|
| 697 |
+
},
|
| 698 |
+
"funding": {
|
| 699 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 700 |
+
}
|
| 701 |
+
},
|
| 702 |
+
"node_modules/range-parser": {
|
| 703 |
+
"version": "1.2.1",
|
| 704 |
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
| 705 |
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
| 706 |
+
"engines": {
|
| 707 |
+
"node": ">= 0.6"
|
| 708 |
+
}
|
| 709 |
+
},
|
| 710 |
+
"node_modules/raw-body": {
|
| 711 |
+
"version": "2.5.1",
|
| 712 |
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
|
| 713 |
+
"integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
|
| 714 |
+
"dependencies": {
|
| 715 |
+
"bytes": "3.1.2",
|
| 716 |
+
"http-errors": "2.0.0",
|
| 717 |
+
"iconv-lite": "0.4.24",
|
| 718 |
+
"unpipe": "1.0.0"
|
| 719 |
+
},
|
| 720 |
+
"engines": {
|
| 721 |
+
"node": ">= 0.8"
|
| 722 |
+
}
|
| 723 |
+
},
|
| 724 |
+
"node_modules/safe-buffer": {
|
| 725 |
+
"version": "5.2.1",
|
| 726 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
| 727 |
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
| 728 |
+
"funding": [
|
| 729 |
+
{
|
| 730 |
+
"type": "github",
|
| 731 |
+
"url": "https://github.com/sponsors/feross"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"type": "patreon",
|
| 735 |
+
"url": "https://www.patreon.com/feross"
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"type": "consulting",
|
| 739 |
+
"url": "https://feross.org/support"
|
| 740 |
+
}
|
| 741 |
+
]
|
| 742 |
+
},
|
| 743 |
+
"node_modules/safer-buffer": {
|
| 744 |
+
"version": "2.1.2",
|
| 745 |
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
| 746 |
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
| 747 |
+
},
|
| 748 |
+
"node_modules/send": {
|
| 749 |
+
"version": "0.18.0",
|
| 750 |
+
"resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
|
| 751 |
+
"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
|
| 752 |
+
"dependencies": {
|
| 753 |
+
"debug": "2.6.9",
|
| 754 |
+
"depd": "2.0.0",
|
| 755 |
+
"destroy": "1.2.0",
|
| 756 |
+
"encodeurl": "~1.0.2",
|
| 757 |
+
"escape-html": "~1.0.3",
|
| 758 |
+
"etag": "~1.8.1",
|
| 759 |
+
"fresh": "0.5.2",
|
| 760 |
+
"http-errors": "2.0.0",
|
| 761 |
+
"mime": "1.6.0",
|
| 762 |
+
"ms": "2.1.3",
|
| 763 |
+
"on-finished": "2.4.1",
|
| 764 |
+
"range-parser": "~1.2.1",
|
| 765 |
+
"statuses": "2.0.1"
|
| 766 |
+
},
|
| 767 |
+
"engines": {
|
| 768 |
+
"node": ">= 0.8.0"
|
| 769 |
+
}
|
| 770 |
+
},
|
| 771 |
+
"node_modules/send/node_modules/ms": {
|
| 772 |
+
"version": "2.1.3",
|
| 773 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
| 774 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
| 775 |
+
},
|
| 776 |
+
"node_modules/serve-static": {
|
| 777 |
+
"version": "1.15.0",
|
| 778 |
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
|
| 779 |
+
"integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
|
| 780 |
+
"dependencies": {
|
| 781 |
+
"encodeurl": "~1.0.2",
|
| 782 |
+
"escape-html": "~1.0.3",
|
| 783 |
+
"parseurl": "~1.3.3",
|
| 784 |
+
"send": "0.18.0"
|
| 785 |
+
},
|
| 786 |
+
"engines": {
|
| 787 |
+
"node": ">= 0.8.0"
|
| 788 |
+
}
|
| 789 |
+
},
|
| 790 |
+
"node_modules/setprototypeof": {
|
| 791 |
+
"version": "1.2.0",
|
| 792 |
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
| 793 |
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
|
| 794 |
+
},
|
| 795 |
+
"node_modules/side-channel": {
|
| 796 |
+
"version": "1.0.4",
|
| 797 |
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
|
| 798 |
+
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
|
| 799 |
+
"dependencies": {
|
| 800 |
+
"call-bind": "^1.0.0",
|
| 801 |
+
"get-intrinsic": "^1.0.2",
|
| 802 |
+
"object-inspect": "^1.9.0"
|
| 803 |
+
},
|
| 804 |
+
"funding": {
|
| 805 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 806 |
+
}
|
| 807 |
+
},
|
| 808 |
+
"node_modules/statuses": {
|
| 809 |
+
"version": "2.0.1",
|
| 810 |
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
| 811 |
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
| 812 |
+
"engines": {
|
| 813 |
+
"node": ">= 0.8"
|
| 814 |
+
}
|
| 815 |
+
},
|
| 816 |
+
"node_modules/toidentifier": {
|
| 817 |
+
"version": "1.0.1",
|
| 818 |
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
| 819 |
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
| 820 |
+
"engines": {
|
| 821 |
+
"node": ">=0.6"
|
| 822 |
+
}
|
| 823 |
+
},
|
| 824 |
+
"node_modules/ts-node": {
|
| 825 |
+
"version": "10.9.1",
|
| 826 |
+
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz",
|
| 827 |
+
"integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==",
|
| 828 |
+
"dependencies": {
|
| 829 |
+
"@cspotcode/source-map-support": "^0.8.0",
|
| 830 |
+
"@tsconfig/node10": "^1.0.7",
|
| 831 |
+
"@tsconfig/node12": "^1.0.7",
|
| 832 |
+
"@tsconfig/node14": "^1.0.0",
|
| 833 |
+
"@tsconfig/node16": "^1.0.2",
|
| 834 |
+
"acorn": "^8.4.1",
|
| 835 |
+
"acorn-walk": "^8.1.1",
|
| 836 |
+
"arg": "^4.1.0",
|
| 837 |
+
"create-require": "^1.1.0",
|
| 838 |
+
"diff": "^4.0.1",
|
| 839 |
+
"make-error": "^1.1.1",
|
| 840 |
+
"v8-compile-cache-lib": "^3.0.1",
|
| 841 |
+
"yn": "3.1.1"
|
| 842 |
+
},
|
| 843 |
+
"bin": {
|
| 844 |
+
"ts-node": "dist/bin.js",
|
| 845 |
+
"ts-node-cwd": "dist/bin-cwd.js",
|
| 846 |
+
"ts-node-esm": "dist/bin-esm.js",
|
| 847 |
+
"ts-node-script": "dist/bin-script.js",
|
| 848 |
+
"ts-node-transpile-only": "dist/bin-transpile.js",
|
| 849 |
+
"ts-script": "dist/bin-script-deprecated.js"
|
| 850 |
+
},
|
| 851 |
+
"peerDependencies": {
|
| 852 |
+
"@swc/core": ">=1.2.50",
|
| 853 |
+
"@swc/wasm": ">=1.2.50",
|
| 854 |
+
"@types/node": "*",
|
| 855 |
+
"typescript": ">=2.7"
|
| 856 |
+
},
|
| 857 |
+
"peerDependenciesMeta": {
|
| 858 |
+
"@swc/core": {
|
| 859 |
+
"optional": true
|
| 860 |
+
},
|
| 861 |
+
"@swc/wasm": {
|
| 862 |
+
"optional": true
|
| 863 |
+
}
|
| 864 |
+
}
|
| 865 |
+
},
|
| 866 |
+
"node_modules/type-is": {
|
| 867 |
+
"version": "1.6.18",
|
| 868 |
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
| 869 |
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
| 870 |
+
"dependencies": {
|
| 871 |
+
"media-typer": "0.3.0",
|
| 872 |
+
"mime-types": "~2.1.24"
|
| 873 |
+
},
|
| 874 |
+
"engines": {
|
| 875 |
+
"node": ">= 0.6"
|
| 876 |
+
}
|
| 877 |
+
},
|
| 878 |
+
"node_modules/typescript": {
|
| 879 |
+
"version": "5.1.6",
|
| 880 |
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
|
| 881 |
+
"integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
|
| 882 |
+
"peer": true,
|
| 883 |
+
"bin": {
|
| 884 |
+
"tsc": "bin/tsc",
|
| 885 |
+
"tsserver": "bin/tsserver"
|
| 886 |
+
},
|
| 887 |
+
"engines": {
|
| 888 |
+
"node": ">=14.17"
|
| 889 |
+
}
|
| 890 |
+
},
|
| 891 |
+
"node_modules/unpipe": {
|
| 892 |
+
"version": "1.0.0",
|
| 893 |
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
| 894 |
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
| 895 |
+
"engines": {
|
| 896 |
+
"node": ">= 0.8"
|
| 897 |
+
}
|
| 898 |
+
},
|
| 899 |
+
"node_modules/utils-merge": {
|
| 900 |
+
"version": "1.0.1",
|
| 901 |
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
| 902 |
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
| 903 |
+
"engines": {
|
| 904 |
+
"node": ">= 0.4.0"
|
| 905 |
+
}
|
| 906 |
+
},
|
| 907 |
+
"node_modules/v8-compile-cache-lib": {
|
| 908 |
+
"version": "3.0.1",
|
| 909 |
+
"resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
|
| 910 |
+
"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg=="
|
| 911 |
+
},
|
| 912 |
+
"node_modules/vary": {
|
| 913 |
+
"version": "1.1.2",
|
| 914 |
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
| 915 |
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
| 916 |
+
"engines": {
|
| 917 |
+
"node": ">= 0.8"
|
| 918 |
+
}
|
| 919 |
+
},
|
| 920 |
+
"node_modules/web-streams-polyfill": {
|
| 921 |
+
"version": "3.2.1",
|
| 922 |
+
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz",
|
| 923 |
+
"integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==",
|
| 924 |
+
"engines": {
|
| 925 |
+
"node": ">= 8"
|
| 926 |
+
}
|
| 927 |
+
},
|
| 928 |
+
"node_modules/yn": {
|
| 929 |
+
"version": "3.1.1",
|
| 930 |
+
"resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
|
| 931 |
+
"integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
|
| 932 |
+
"engines": {
|
| 933 |
+
"node": ">=6"
|
| 934 |
+
}
|
| 935 |
+
}
|
| 936 |
+
}
|
| 937 |
+
}
|
package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "ai-webtv",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "A generative AI WebTV",
|
| 5 |
+
"main": "src/index.mts",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node --loader ts-node/esm src/index.mts",
|
| 8 |
+
"test": "node --loader ts-node/esm src/test.mts",
|
| 9 |
+
"docker": "npm run docker:build && npm run docker:run",
|
| 10 |
+
"docker:build": "docker build -t ai-webtv .",
|
| 11 |
+
"docker:run": "docker run -it -p 7860:7860 ai-webtv"
|
| 12 |
+
},
|
| 13 |
+
"author": "Julian Bilcke <[email protected]>",
|
| 14 |
+
"license": "Apache License",
|
| 15 |
+
"dependencies": {
|
| 16 |
+
"@types/express": "^4.17.17",
|
| 17 |
+
"express": "^4.18.2",
|
| 18 |
+
"node-fetch": "^3.3.1",
|
| 19 |
+
"ts-node": "^10.9.1"
|
| 20 |
+
}
|
| 21 |
+
}
|
public/hf-logo.png
ADDED
|
public/index.html
ADDED
|
@@ -0,0 +1,325 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<html>
|
| 2 |
+
<head>
|
| 3 |
+
<title>AI Web TV 🤗</title>
|
| 4 |
+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
|
| 5 |
+
<!--<link href="https://vjs.zencdn.net/8.3.0/video-js.css" rel="stylesheet" />-->
|
| 6 |
+
<script src="/mpegts.js"></script>
|
| 7 |
+
</head>
|
| 8 |
+
<body
|
| 9 |
+
x-data="app()" x-init="init()"
|
| 10 |
+
class="fixed inset-0 bg-[rgb(0,0,0)] flex flex-col w-full items-center justify-start">
|
| 11 |
+
<div x-show="!enabled">Loading WebTV..</div>
|
| 12 |
+
|
| 13 |
+
<div
|
| 14 |
+
x-show="enabled && showToolbar"
|
| 15 |
+
x-transition:enter="transition ease-out duration-100"
|
| 16 |
+
x-transition:enter-start="opacity-0 -translate-y-8"
|
| 17 |
+
x-transition:enter-end="opacity-100"
|
| 18 |
+
x-transition:leave="transition ease-in duration-200"
|
| 19 |
+
x-transition:leave-start="opacity-100"
|
| 20 |
+
x-transition:leave-end="opacity-0 -translate-y-8"
|
| 21 |
+
class="fixed w-full z-20 py-4 px-6 top-0 font-mono text-white flex flex-col lg:flex-row items-center justify-between space-x-1 bg-black bg-opacity-60"
|
| 22 |
+
style="text-shadow: 0px 0px 3px #000000">
|
| 23 |
+
|
| 24 |
+
<div class="flex text-xl space-x-2">
|
| 25 |
+
<div class="text-xl">🤗 AI WebTV</div>
|
| 26 |
+
<div class="text-md">👉 Current channel:</div>
|
| 27 |
+
<template x-for="chan in channels">
|
| 28 |
+
<div
|
| 29 |
+
class="text-xl mr-2"
|
| 30 |
+
:class="chan.id === channel.id
|
| 31 |
+
? 'font-bold'
|
| 32 |
+
: 'hover:underline opacity-60 hover:opacity-80 cursor-pointer'"
|
| 33 |
+
x-on:click="window.location = `${window.location.origin}/?channel=${chan.id}`"
|
| 34 |
+
x-text="chan.label">
|
| 35 |
+
<div class="animate-ping absolute inline-flex h-4 w-4 rounded-full bg-red-400 opacity-75"></div>
|
| 36 |
+
</div>
|
| 37 |
+
</template>
|
| 38 |
+
</div>
|
| 39 |
+
|
| 40 |
+
<div class="flex justify-between space-x-6 items-center">
|
| 41 |
+
|
| 42 |
+
<div class="flex items-center justify-center text-white opacity-100 space-x-2">
|
| 43 |
+
<div>
|
| 44 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 640 512"><path fill="currentColor" d="M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z"/></svg>
|
| 45 |
+
</div>
|
| 46 |
+
<div x-text="channel.audience"></div>
|
| 47 |
+
<div x-text="channel.audience > 1 ? 'viewers' : 'viewer'"></div>
|
| 48 |
+
</div>
|
| 49 |
+
|
| 50 |
+
<div class="text-sm">(<a
|
| 51 |
+
class="hover:underline"
|
| 52 |
+
href="https://huggingface.co/facebook/musicgen-melody"
|
| 53 |
+
target="_blank">musicgen-melody</a> + <a
|
| 54 |
+
class="hover:underline"
|
| 55 |
+
:href="channel.modelUrl"
|
| 56 |
+
x-text="channel.model"
|
| 57 |
+
target="_blank"></a>)</div>
|
| 58 |
+
|
| 59 |
+
<div
|
| 60 |
+
x-on:click="toggleAudio()"
|
| 61 |
+
class="flex items-center justify-center text-white opacity-80 hover:opacity-100 cursor-pointer">
|
| 62 |
+
<div x-show="muted">
|
| 63 |
+
<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="32px" height="32px"><path fill="currentColor" d="M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z" class=""></path></svg>
|
| 64 |
+
</div>
|
| 65 |
+
<div x-show="!muted">
|
| 66 |
+
<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512" width="32px" height="32px"><path fill="currentColor" d="M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.53 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z" class=""></path></svg>
|
| 67 |
+
</div>
|
| 68 |
+
</div>
|
| 69 |
+
<div
|
| 70 |
+
x-on:click="fullscreen()"
|
| 71 |
+
class="text-white hover:text-white opacity-80 hover:opacity-100 cursor-pointer">
|
| 72 |
+
<?xml version="1.0" ?><svg version="1.1" viewBox="0 0 14 14" width="24px" height="24px" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" xmlns:xlink="http://www.w3.org/1999/xlink"><title/><desc/><defs/><g fill="none" fill-rule="evenodd" id="Page-1" stroke="none" stroke-width="1"><g fill="currentColor" id="Core" transform="translate(-215.000000, -257.000000)"><g id="fullscreen" transform="translate(215.000000, 257.000000)"><path d="M2,9 L0,9 L0,14 L5,14 L5,12 L2,12 L2,9 L2,9 Z M0,5 L2,5 L2,2 L5,2 L5,0 L0,0 L0,5 L0,5 Z M12,12 L9,12 L9,14 L14,14 L14,9 L12,9 L12,12 L12,12 Z M9,0 L9,2 L12,2 L12,5 L14,5 L14,0 L9,0 L9,0 Z" id="Shape"/></g></g></g></svg>
|
| 73 |
+
</div>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
<div class="flex w-full">
|
| 77 |
+
<video id="videoElement" muted autoplay class="aspect-video w-full"></video>
|
| 78 |
+
<!--
|
| 79 |
+
We probably want to display a nice logo or decoration somewhere
|
| 80 |
+
<img src="/hf-logo.png" class="absolute mt-2 w-[16%]" />
|
| 81 |
+
-->
|
| 82 |
+
</div>
|
| 83 |
+
<script>
|
| 84 |
+
// disable analytics (we don't use VideoJS yet anyway)
|
| 85 |
+
window.HELP_IMPROVE_VIDEOJS = false
|
| 86 |
+
</script>
|
| 87 |
+
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
|
| 88 |
+
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio"></script>
|
| 89 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.contentWindow.min.js"></script>
|
| 90 |
+
<!--<script src="https://vjs.zencdn.net/8.3.0/video.min.js"></script>-->
|
| 91 |
+
<script>
|
| 92 |
+
|
| 93 |
+
function app() {
|
| 94 |
+
return {
|
| 95 |
+
enabled: false,
|
| 96 |
+
channels: {
|
| 97 |
+
/*
|
| 98 |
+
legacy: {
|
| 99 |
+
id: 'legacy',
|
| 100 |
+
label: '#older',
|
| 101 |
+
audience: 0,
|
| 102 |
+
online: false,
|
| 103 |
+
visible: false,
|
| 104 |
+
url: 'https://jbilcke-hf-media-server.hf.space/live/legacy.flv',
|
| 105 |
+
resolution: '576x320',
|
| 106 |
+
model: 'zeroscope_v2_576w',
|
| 107 |
+
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_576w',
|
| 108 |
+
},
|
| 109 |
+
*/
|
| 110 |
+
/*
|
| 111 |
+
hdtv: {
|
| 112 |
+
id: 'hdtv',
|
| 113 |
+
label: '#old',
|
| 114 |
+
audience: 0,
|
| 115 |
+
online: false,
|
| 116 |
+
visible: true,
|
| 117 |
+
url: 'https://jbilcke-hf-media-server.hf.space/live/hdtv.flv',
|
| 118 |
+
resolution: '1024x576_8FPS',
|
| 119 |
+
model: 'zeroscope_v2_XL',
|
| 120 |
+
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_XL',
|
| 121 |
+
},
|
| 122 |
+
*/
|
| 123 |
+
random: {
|
| 124 |
+
id: 'random',
|
| 125 |
+
label: '#random',
|
| 126 |
+
audience: 0,
|
| 127 |
+
online: false,
|
| 128 |
+
visible: true,
|
| 129 |
+
url: 'https://jbilcke-hf-media-server.hf.space/live/random.flv',
|
| 130 |
+
resolution: '1024x576_24FPS',
|
| 131 |
+
model: 'zeroscope_v2_XL',
|
| 132 |
+
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_XL',
|
| 133 |
+
},
|
| 134 |
+
comedy: {
|
| 135 |
+
id: 'comedy',
|
| 136 |
+
label: '#comedy',
|
| 137 |
+
audience: 0,
|
| 138 |
+
online: false,
|
| 139 |
+
visible: true,
|
| 140 |
+
url: 'https://jbilcke-hf-media-server.hf.space/live/comedy.flv',
|
| 141 |
+
resolution: '1024x576_24FPS',
|
| 142 |
+
model: 'zeroscope_v2_XL',
|
| 143 |
+
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_XL',
|
| 144 |
+
},
|
| 145 |
+
documentary: {
|
| 146 |
+
id: 'documentary',
|
| 147 |
+
label: '#documentary',
|
| 148 |
+
audience: 0,
|
| 149 |
+
online: false,
|
| 150 |
+
visible: true,
|
| 151 |
+
url: 'https://jbilcke-hf-media-server.hf.space/live/documentary.flv',
|
| 152 |
+
resolution: '1024x576_24FPS',
|
| 153 |
+
model: 'zeroscope_v2_XL',
|
| 154 |
+
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_XL',
|
| 155 |
+
},
|
| 156 |
+
},
|
| 157 |
+
showToolbar: true,
|
| 158 |
+
muted: true,
|
| 159 |
+
initialized: false,
|
| 160 |
+
activityTimeout: null,
|
| 161 |
+
defaultChannelId: 'random',
|
| 162 |
+
video: null,
|
| 163 |
+
channel: {
|
| 164 |
+
},
|
| 165 |
+
wakeUp() {
|
| 166 |
+
this.showToolbar = true
|
| 167 |
+
clearTimeout(this.activityTimeout)
|
| 168 |
+
this.activityTimeout = setTimeout(() => {
|
| 169 |
+
this.showToolbar = false
|
| 170 |
+
}, 1500);
|
| 171 |
+
},
|
| 172 |
+
toggleAudio() {
|
| 173 |
+
if (this.video.muted) {
|
| 174 |
+
this.video.muted = false
|
| 175 |
+
this.muted = false
|
| 176 |
+
} else {
|
| 177 |
+
this.video.muted = true
|
| 178 |
+
this.muted = true
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
async checkAudience() {
|
| 182 |
+
let audience = {}
|
| 183 |
+
try {
|
| 184 |
+
const res = await fetch('/stats')
|
| 185 |
+
audience = await res.json()
|
| 186 |
+
} catch (err) {
|
| 187 |
+
console.log('failed to check the audience, something is wrong')
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
window.DEBUGME = Object.entries(this.channels)
|
| 191 |
+
this.channels = Object.entries(this.channels).reduce((acc, [channel, data]) => ((console.log('debug:', {
|
| 192 |
+
...data,
|
| 193 |
+
audience: audience[channel] || 0
|
| 194 |
+
} ), {
|
| 195 |
+
...acc,
|
| 196 |
+
[channel]: {
|
| 197 |
+
...data,
|
| 198 |
+
audience: audience[channel] || 0
|
| 199 |
+
}
|
| 200 |
+
})), {})
|
| 201 |
+
this.channel = this.channels[this.channel.id]
|
| 202 |
+
},
|
| 203 |
+
fullscreen() {
|
| 204 |
+
if (this.video.requestFullscreen) {
|
| 205 |
+
this.video.requestFullscreen();
|
| 206 |
+
} else if (this.video.mozRequestFullScreen) {
|
| 207 |
+
this.video.mozRequestFullScreen();
|
| 208 |
+
} else if (this.video.webkitRequestFullscreen) {
|
| 209 |
+
this.video.webkitRequestFullscreen();
|
| 210 |
+
} else if (this.video.msRequestFullscreen) {
|
| 211 |
+
this.video.msRequestFullscreen();
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
init() {
|
| 215 |
+
if (this.initialized) {
|
| 216 |
+
console.log("already initialized")
|
| 217 |
+
return
|
| 218 |
+
}
|
| 219 |
+
this.initialized = true
|
| 220 |
+
console.log('initializing WebTV..')
|
| 221 |
+
|
| 222 |
+
const urlParams = new URLSearchParams(window.location.search)
|
| 223 |
+
|
| 224 |
+
const requestedChannelId = `${urlParams.get('channel') || 'random'}`
|
| 225 |
+
|
| 226 |
+
this.enabled = true
|
| 227 |
+
// this.enabled = `${urlParams.get('beta') || 'false'}` === 'true'
|
| 228 |
+
|
| 229 |
+
if (!this.enabled) {
|
| 230 |
+
return
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
this.video = document.getElementById('videoElement')
|
| 234 |
+
|
| 235 |
+
const defaultChannel = this.channels[this.defaultChannelId]
|
| 236 |
+
|
| 237 |
+
this.channel = this.channels[requestedChannelId] || defaultChannel
|
| 238 |
+
|
| 239 |
+
console.log(`Selected channel: ${this.channel.label}`)
|
| 240 |
+
console.log(`Stream URL: ${this.channel.url}`)
|
| 241 |
+
|
| 242 |
+
|
| 243 |
+
const handleActivity = () => {
|
| 244 |
+
this.wakeUp()
|
| 245 |
+
}
|
| 246 |
+
handleActivity()
|
| 247 |
+
|
| 248 |
+
document.addEventListener("touchstart", handleActivity)
|
| 249 |
+
document.addEventListener("touchmove", handleActivity)
|
| 250 |
+
document.addEventListener("click", handleActivity)
|
| 251 |
+
document.addEventListener("mousemove", handleActivity)
|
| 252 |
+
|
| 253 |
+
this.checkAudience()
|
| 254 |
+
setInterval(() => {
|
| 255 |
+
this.checkAudience()
|
| 256 |
+
}, 1000)
|
| 257 |
+
|
| 258 |
+
// detect mute/unmute events
|
| 259 |
+
this.video.addEventListener("mute", () => {
|
| 260 |
+
this.muted = true
|
| 261 |
+
})
|
| 262 |
+
this.video.addEventListener("unmute", () => {
|
| 263 |
+
this.muted = false
|
| 264 |
+
})
|
| 265 |
+
|
| 266 |
+
// when we move outside the video, we always hide the toolbar
|
| 267 |
+
document.addEventListener("mouseleave", () => {
|
| 268 |
+
clearTimeout(this.activityTimeout)
|
| 269 |
+
this.showToolbar = false
|
| 270 |
+
})
|
| 271 |
+
|
| 272 |
+
// as a bonus, we also allow fullscreen on double click
|
| 273 |
+
this.video.addEventListener('dblclick', () => {
|
| 274 |
+
this.fullscreen()
|
| 275 |
+
})
|
| 276 |
+
|
| 277 |
+
// some devices such as the iPhone don't support MSE Live Playback
|
| 278 |
+
if (mpegts.getFeatureList().mseLivePlayback) {
|
| 279 |
+
var player = mpegts.createPlayer({
|
| 280 |
+
type: 'flv', // could also be mpegts, m2ts, flv
|
| 281 |
+
isLive: true,
|
| 282 |
+
url: this.channel.url,
|
| 283 |
+
})
|
| 284 |
+
player.attachMediaElement(this.video)
|
| 285 |
+
|
| 286 |
+
player.on(mpegts.Events.ERROR, function (err) {
|
| 287 |
+
console.log('got an error:', err)
|
| 288 |
+
if (err.type === mpegts.ErrorTypes.NETWORK_ERROR) {
|
| 289 |
+
console.log('Network error')
|
| 290 |
+
}
|
| 291 |
+
});
|
| 292 |
+
|
| 293 |
+
player.load()
|
| 294 |
+
|
| 295 |
+
// due to an issue with our stream when the FFMPEG playlist ends,
|
| 296 |
+
// the stream gets interrupted for ~1sec, which causes the frontend to hangs up
|
| 297 |
+
// the following code tries to restart the page when that happens, but in the long term
|
| 298 |
+
// we should fix the issue on the server side (fix our FFMPEG bash script)
|
| 299 |
+
this.video.addEventListener('ended', function() {
|
| 300 |
+
console.log('Stream ended, trying to reload...')
|
| 301 |
+
setTimeout(() => {
|
| 302 |
+
console.log('Reloading the page..')
|
| 303 |
+
// Unloading and loading the source again isn't enough it seems
|
| 304 |
+
// player.unload()
|
| 305 |
+
// player.load()
|
| 306 |
+
window.location.reload()
|
| 307 |
+
}, 1200)
|
| 308 |
+
}, false)
|
| 309 |
+
|
| 310 |
+
// Handle autoplay restrictions.
|
| 311 |
+
let promise = this.video.play()
|
| 312 |
+
if (promise !== undefined) {
|
| 313 |
+
this.video.addEventListener('click', function() {
|
| 314 |
+
this.video.play()
|
| 315 |
+
})
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
player.play()
|
| 319 |
+
}
|
| 320 |
+
}
|
| 321 |
+
}
|
| 322 |
+
}
|
| 323 |
+
</script>
|
| 324 |
+
</body>
|
| 325 |
+
</html>
|
public/mpegts.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/index.mts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import express from 'express'
|
| 2 |
+
|
| 3 |
+
const app = express()
|
| 4 |
+
const port = 7860
|
| 5 |
+
|
| 6 |
+
app.use(express.static('public'))
|
| 7 |
+
|
| 8 |
+
app.get('/stats', async (req, res) => {
|
| 9 |
+
try {
|
| 10 |
+
const results = await fetch(process.env.WEBTV_MEDIA_SERVER_API_URL)
|
| 11 |
+
const json = await results.json()
|
| 12 |
+
const response = Object.entries(json.live).reduce((acc, [key, channel]) => ({
|
| 13 |
+
...acc,
|
| 14 |
+
[key]: (channel as any).subscribers.length
|
| 15 |
+
}), {})
|
| 16 |
+
res.write(JSON.stringify(response))
|
| 17 |
+
res.end()
|
| 18 |
+
} catch (err) {
|
| 19 |
+
res.write(JSON.stringify({}))
|
| 20 |
+
res.end()
|
| 21 |
+
}
|
| 22 |
+
})
|
| 23 |
+
|
| 24 |
+
app.listen(port, () => { console.log(`Open http://localhost:${port}`) })
|
tsconfig.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"allowJs": true,
|
| 4 |
+
"esModuleInterop": true,
|
| 5 |
+
"allowSyntheticDefaultImports": true,
|
| 6 |
+
"module": "nodenext",
|
| 7 |
+
"noEmit": true,
|
| 8 |
+
"allowImportingTsExtensions": true,
|
| 9 |
+
"target": "es2017"
|
| 10 |
+
},
|
| 11 |
+
"include": ["**/*.ts", "**/*.mts"],
|
| 12 |
+
}
|