Spaces:
Running
Running
Commit
·
f4aba6e
0
Parent(s):
try another way
Browse files- .gitignore +59 -0
- Dockerfile +22 -0
- README.md +14 -0
- app.js +20 -0
- package-lock.json +1492 -0
- package.json +29 -0
- plugins/README.md +16 -0
- plugins/fastify-view.js +16 -0
- plugins/sensible.js +14 -0
- plugins/support.js +12 -0
- routes/README.md +29 -0
- routes/prompt/index.js +47 -0
- routes/root.js +7 -0
.gitignore
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Logs
|
2 |
+
logs
|
3 |
+
*.log
|
4 |
+
npm-debug.log*
|
5 |
+
|
6 |
+
# Runtime data
|
7 |
+
pids
|
8 |
+
*.pid
|
9 |
+
*.seed
|
10 |
+
|
11 |
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
12 |
+
lib-cov
|
13 |
+
|
14 |
+
# Coverage directory used by tools like istanbul
|
15 |
+
coverage
|
16 |
+
|
17 |
+
# nyc test coverage
|
18 |
+
.nyc_output
|
19 |
+
|
20 |
+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
21 |
+
.grunt
|
22 |
+
|
23 |
+
# node-waf configuration
|
24 |
+
.lock-wscript
|
25 |
+
|
26 |
+
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
27 |
+
build/Release
|
28 |
+
|
29 |
+
# Dependency directories
|
30 |
+
node_modules
|
31 |
+
jspm_packages
|
32 |
+
|
33 |
+
# Optional npm cache directory
|
34 |
+
.npm
|
35 |
+
|
36 |
+
# Optional REPL history
|
37 |
+
.node_repl_history
|
38 |
+
|
39 |
+
# 0x
|
40 |
+
profile-*
|
41 |
+
|
42 |
+
# mac files
|
43 |
+
.DS_Store
|
44 |
+
|
45 |
+
# vim swap files
|
46 |
+
*.swp
|
47 |
+
|
48 |
+
# webstorm
|
49 |
+
.idea
|
50 |
+
|
51 |
+
# vscode
|
52 |
+
.vscode
|
53 |
+
*code-workspace
|
54 |
+
|
55 |
+
# clinic
|
56 |
+
profile*
|
57 |
+
*clinic*
|
58 |
+
*flamegraph*
|
59 |
+
.env
|
Dockerfile
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dockerfile
|
2 |
+
|
3 |
+
# Use an official Node.js runtime as the base image
|
4 |
+
FROM node:lts
|
5 |
+
|
6 |
+
# Set the working directory in the container
|
7 |
+
WORKDIR /usr/src/app
|
8 |
+
|
9 |
+
# Copy package.json and package-lock.json to the container
|
10 |
+
COPY package.json package-lock.json ./
|
11 |
+
|
12 |
+
# Install dependencies
|
13 |
+
RUN npm install
|
14 |
+
|
15 |
+
# Copy the rest of the application files to the container
|
16 |
+
COPY . .
|
17 |
+
|
18 |
+
# Expose the application port (assuming your app runs on port 3000)
|
19 |
+
EXPOSE 3000
|
20 |
+
|
21 |
+
# Start the application
|
22 |
+
CMD ["npm", "start"]
|
README.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: — Cached Generation —
|
3 |
+
header: mini
|
4 |
+
short_description: Generate and cached through URL your generation
|
5 |
+
emoji: 💽
|
6 |
+
colorFrom: green
|
7 |
+
colorTo: red
|
8 |
+
sdk: docker
|
9 |
+
app_port: 3000
|
10 |
+
pinned: false
|
11 |
+
license: mit
|
12 |
+
---
|
13 |
+
|
14 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
const path = require('node:path')
|
4 |
+
const AutoLoad = require('@fastify/autoload')
|
5 |
+
|
6 |
+
const options = {}
|
7 |
+
|
8 |
+
module.exports = async function (fastify, opts) {
|
9 |
+
fastify.register(AutoLoad, {
|
10 |
+
dir: path.join(__dirname, 'plugins'),
|
11 |
+
options: Object.assign({}, opts)
|
12 |
+
})
|
13 |
+
|
14 |
+
fastify.register(AutoLoad, {
|
15 |
+
dir: path.join(__dirname, 'routes'),
|
16 |
+
options: Object.assign({}, opts)
|
17 |
+
})
|
18 |
+
}
|
19 |
+
|
20 |
+
module.exports.options = options
|
package-lock.json
ADDED
@@ -0,0 +1,1492 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "fastify-cached-gen",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"lockfileVersion": 3,
|
5 |
+
"requires": true,
|
6 |
+
"packages": {
|
7 |
+
"": {
|
8 |
+
"name": "fastify-cached-gen",
|
9 |
+
"version": "1.0.0",
|
10 |
+
"license": "ISC",
|
11 |
+
"dependencies": {
|
12 |
+
"@fastify/autoload": "^5.0.0",
|
13 |
+
"@fastify/sensible": "^5.0.0",
|
14 |
+
"@fastify/view": "^9.1.0",
|
15 |
+
"@huggingface/inference": "^2.8.0",
|
16 |
+
"dotenv": "^16.4.5",
|
17 |
+
"ejs": "^3.1.10",
|
18 |
+
"fastify": "^4.26.1",
|
19 |
+
"fastify-cli": "^6.3.0",
|
20 |
+
"fastify-plugin": "^4.0.0",
|
21 |
+
"node-cache": "^5.1.2"
|
22 |
+
}
|
23 |
+
},
|
24 |
+
"node_modules/@fastify/ajv-compiler": {
|
25 |
+
"version": "3.6.0",
|
26 |
+
"resolved": "https://registry.npmjs.org/@fastify/ajv-compiler/-/ajv-compiler-3.6.0.tgz",
|
27 |
+
"integrity": "sha512-LwdXQJjmMD+GwLOkP7TVC68qa+pSSogeWWmznRJ/coyTcfe9qA05AHFSe1eZFwK6q+xVRpChnvFUkf1iYaSZsQ==",
|
28 |
+
"dependencies": {
|
29 |
+
"ajv": "^8.11.0",
|
30 |
+
"ajv-formats": "^2.1.1",
|
31 |
+
"fast-uri": "^2.0.0"
|
32 |
+
}
|
33 |
+
},
|
34 |
+
"node_modules/@fastify/autoload": {
|
35 |
+
"version": "5.10.0",
|
36 |
+
"resolved": "https://registry.npmjs.org/@fastify/autoload/-/autoload-5.10.0.tgz",
|
37 |
+
"integrity": "sha512-4A6s86qMbjcpWHmJL7cErtjIxOPuW8c67DLiuO8HoJQxuK97vaptoUnK5BTOwRg1ntYqfc3tjwerTTo5NQ3fEQ=="
|
38 |
+
},
|
39 |
+
"node_modules/@fastify/deepmerge": {
|
40 |
+
"version": "2.0.0",
|
41 |
+
"resolved": "https://registry.npmjs.org/@fastify/deepmerge/-/deepmerge-2.0.0.tgz",
|
42 |
+
"integrity": "sha512-fsaybTGDyQ5KpPsplQqb9yKdCf2x/pbNpMNk8Tvp3rRz7lVcupKysH4b2ELMN2P4Hak1+UqTYdTj/u4FNV2p0g=="
|
43 |
+
},
|
44 |
+
"node_modules/@fastify/error": {
|
45 |
+
"version": "3.4.1",
|
46 |
+
"resolved": "https://registry.npmjs.org/@fastify/error/-/error-3.4.1.tgz",
|
47 |
+
"integrity": "sha512-wWSvph+29GR783IhmvdwWnN4bUxTD01Vm5Xad4i7i1VuAOItLvbPAb69sb0IQ2N57yprvhNIwAP5B6xfKTmjmQ=="
|
48 |
+
},
|
49 |
+
"node_modules/@fastify/fast-json-stringify-compiler": {
|
50 |
+
"version": "4.3.0",
|
51 |
+
"resolved": "https://registry.npmjs.org/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.3.0.tgz",
|
52 |
+
"integrity": "sha512-aZAXGYo6m22Fk1zZzEUKBvut/CIIQe/BapEORnxiD5Qr0kPHqqI69NtEMCme74h+at72sPhbkb4ZrLd1W3KRLA==",
|
53 |
+
"dependencies": {
|
54 |
+
"fast-json-stringify": "^5.7.0"
|
55 |
+
}
|
56 |
+
},
|
57 |
+
"node_modules/@fastify/merge-json-schemas": {
|
58 |
+
"version": "0.1.1",
|
59 |
+
"resolved": "https://registry.npmjs.org/@fastify/merge-json-schemas/-/merge-json-schemas-0.1.1.tgz",
|
60 |
+
"integrity": "sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==",
|
61 |
+
"dependencies": {
|
62 |
+
"fast-deep-equal": "^3.1.3"
|
63 |
+
}
|
64 |
+
},
|
65 |
+
"node_modules/@fastify/sensible": {
|
66 |
+
"version": "5.6.0",
|
67 |
+
"resolved": "https://registry.npmjs.org/@fastify/sensible/-/sensible-5.6.0.tgz",
|
68 |
+
"integrity": "sha512-Vq6Z2ZQy10GDqON+hvLF52K99s9et5gVVxTul5n3SIAf0Kq5QjPRUKkAMT3zPAiiGvoHtS3APa/3uaxfDgCODQ==",
|
69 |
+
"dependencies": {
|
70 |
+
"@lukeed/ms": "^2.0.1",
|
71 |
+
"fast-deep-equal": "^3.1.1",
|
72 |
+
"fastify-plugin": "^4.0.0",
|
73 |
+
"forwarded": "^0.2.0",
|
74 |
+
"http-errors": "^2.0.0",
|
75 |
+
"type-is": "^1.6.18",
|
76 |
+
"vary": "^1.1.2"
|
77 |
+
}
|
78 |
+
},
|
79 |
+
"node_modules/@fastify/view": {
|
80 |
+
"version": "9.1.0",
|
81 |
+
"resolved": "https://registry.npmjs.org/@fastify/view/-/view-9.1.0.tgz",
|
82 |
+
"integrity": "sha512-jRTGDljs/uB2p8bf6c1x4stGjP7H84VQkhbtDgCx55Mxf9Fplud5UZIHubvL4BTTX8jNYEzP1FpNAOBi7vibxg==",
|
83 |
+
"dependencies": {
|
84 |
+
"fastify-plugin": "^4.0.0",
|
85 |
+
"toad-cache": "^3.7.0"
|
86 |
+
}
|
87 |
+
},
|
88 |
+
"node_modules/@huggingface/inference": {
|
89 |
+
"version": "2.8.0",
|
90 |
+
"resolved": "https://registry.npmjs.org/@huggingface/inference/-/inference-2.8.0.tgz",
|
91 |
+
"integrity": "sha512-Ti681P1qckcCAqgzmL53jBnluPuZGelmMIuXNjgAwC5+RIjF4S0SDQu6oy44ZTwekwNp2ETaZ2sXsOk+45aC4w==",
|
92 |
+
"dependencies": {
|
93 |
+
"@huggingface/tasks": "^0.11.2"
|
94 |
+
},
|
95 |
+
"engines": {
|
96 |
+
"node": ">=18"
|
97 |
+
}
|
98 |
+
},
|
99 |
+
"node_modules/@huggingface/tasks": {
|
100 |
+
"version": "0.11.13",
|
101 |
+
"resolved": "https://registry.npmjs.org/@huggingface/tasks/-/tasks-0.11.13.tgz",
|
102 |
+
"integrity": "sha512-TqFEyFtKYAYwDg9h4XQMzoSxN2NMpwSnerPBx7Y4RbM1nHLM+CTXAUHcDY+hydcA5CoDDaBGzkHw+mttY3AmFQ=="
|
103 |
+
},
|
104 |
+
"node_modules/@lukeed/ms": {
|
105 |
+
"version": "2.0.2",
|
106 |
+
"resolved": "https://registry.npmjs.org/@lukeed/ms/-/ms-2.0.2.tgz",
|
107 |
+
"integrity": "sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==",
|
108 |
+
"engines": {
|
109 |
+
"node": ">=8"
|
110 |
+
}
|
111 |
+
},
|
112 |
+
"node_modules/abort-controller": {
|
113 |
+
"version": "3.0.0",
|
114 |
+
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
115 |
+
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
116 |
+
"dependencies": {
|
117 |
+
"event-target-shim": "^5.0.0"
|
118 |
+
},
|
119 |
+
"engines": {
|
120 |
+
"node": ">=6.5"
|
121 |
+
}
|
122 |
+
},
|
123 |
+
"node_modules/abstract-logging": {
|
124 |
+
"version": "2.0.1",
|
125 |
+
"resolved": "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz",
|
126 |
+
"integrity": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA=="
|
127 |
+
},
|
128 |
+
"node_modules/ajv": {
|
129 |
+
"version": "8.17.1",
|
130 |
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
|
131 |
+
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
|
132 |
+
"dependencies": {
|
133 |
+
"fast-deep-equal": "^3.1.3",
|
134 |
+
"fast-uri": "^3.0.1",
|
135 |
+
"json-schema-traverse": "^1.0.0",
|
136 |
+
"require-from-string": "^2.0.2"
|
137 |
+
},
|
138 |
+
"funding": {
|
139 |
+
"type": "github",
|
140 |
+
"url": "https://github.com/sponsors/epoberezkin"
|
141 |
+
}
|
142 |
+
},
|
143 |
+
"node_modules/ajv-formats": {
|
144 |
+
"version": "2.1.1",
|
145 |
+
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
|
146 |
+
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
|
147 |
+
"dependencies": {
|
148 |
+
"ajv": "^8.0.0"
|
149 |
+
},
|
150 |
+
"peerDependencies": {
|
151 |
+
"ajv": "^8.0.0"
|
152 |
+
},
|
153 |
+
"peerDependenciesMeta": {
|
154 |
+
"ajv": {
|
155 |
+
"optional": true
|
156 |
+
}
|
157 |
+
}
|
158 |
+
},
|
159 |
+
"node_modules/ajv/node_modules/fast-uri": {
|
160 |
+
"version": "3.0.1",
|
161 |
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz",
|
162 |
+
"integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw=="
|
163 |
+
},
|
164 |
+
"node_modules/ansi-styles": {
|
165 |
+
"version": "4.3.0",
|
166 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
167 |
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
168 |
+
"dependencies": {
|
169 |
+
"color-convert": "^2.0.1"
|
170 |
+
},
|
171 |
+
"engines": {
|
172 |
+
"node": ">=8"
|
173 |
+
},
|
174 |
+
"funding": {
|
175 |
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
176 |
+
}
|
177 |
+
},
|
178 |
+
"node_modules/anymatch": {
|
179 |
+
"version": "3.1.3",
|
180 |
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
181 |
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
182 |
+
"dependencies": {
|
183 |
+
"normalize-path": "^3.0.0",
|
184 |
+
"picomatch": "^2.0.4"
|
185 |
+
},
|
186 |
+
"engines": {
|
187 |
+
"node": ">= 8"
|
188 |
+
}
|
189 |
+
},
|
190 |
+
"node_modules/async": {
|
191 |
+
"version": "3.2.6",
|
192 |
+
"resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
|
193 |
+
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
|
194 |
+
},
|
195 |
+
"node_modules/atomic-sleep": {
|
196 |
+
"version": "1.0.0",
|
197 |
+
"resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
|
198 |
+
"integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
|
199 |
+
"engines": {
|
200 |
+
"node": ">=8.0.0"
|
201 |
+
}
|
202 |
+
},
|
203 |
+
"node_modules/avvio": {
|
204 |
+
"version": "8.4.0",
|
205 |
+
"resolved": "https://registry.npmjs.org/avvio/-/avvio-8.4.0.tgz",
|
206 |
+
"integrity": "sha512-CDSwaxINFy59iNwhYnkvALBwZiTydGkOecZyPkqBpABYR1KqGEsET0VOOYDwtleZSUIdeY36DC2bSZ24CO1igA==",
|
207 |
+
"dependencies": {
|
208 |
+
"@fastify/error": "^3.3.0",
|
209 |
+
"fastq": "^1.17.1"
|
210 |
+
}
|
211 |
+
},
|
212 |
+
"node_modules/balanced-match": {
|
213 |
+
"version": "1.0.2",
|
214 |
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
215 |
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
216 |
+
},
|
217 |
+
"node_modules/base64-js": {
|
218 |
+
"version": "1.5.1",
|
219 |
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
220 |
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
221 |
+
"funding": [
|
222 |
+
{
|
223 |
+
"type": "github",
|
224 |
+
"url": "https://github.com/sponsors/feross"
|
225 |
+
},
|
226 |
+
{
|
227 |
+
"type": "patreon",
|
228 |
+
"url": "https://www.patreon.com/feross"
|
229 |
+
},
|
230 |
+
{
|
231 |
+
"type": "consulting",
|
232 |
+
"url": "https://feross.org/support"
|
233 |
+
}
|
234 |
+
]
|
235 |
+
},
|
236 |
+
"node_modules/binary-extensions": {
|
237 |
+
"version": "2.3.0",
|
238 |
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
239 |
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
240 |
+
"engines": {
|
241 |
+
"node": ">=8"
|
242 |
+
},
|
243 |
+
"funding": {
|
244 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
245 |
+
}
|
246 |
+
},
|
247 |
+
"node_modules/brace-expansion": {
|
248 |
+
"version": "2.0.1",
|
249 |
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
250 |
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
251 |
+
"dependencies": {
|
252 |
+
"balanced-match": "^1.0.0"
|
253 |
+
}
|
254 |
+
},
|
255 |
+
"node_modules/braces": {
|
256 |
+
"version": "3.0.3",
|
257 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
258 |
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
259 |
+
"dependencies": {
|
260 |
+
"fill-range": "^7.1.1"
|
261 |
+
},
|
262 |
+
"engines": {
|
263 |
+
"node": ">=8"
|
264 |
+
}
|
265 |
+
},
|
266 |
+
"node_modules/buffer": {
|
267 |
+
"version": "6.0.3",
|
268 |
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
269 |
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
270 |
+
"funding": [
|
271 |
+
{
|
272 |
+
"type": "github",
|
273 |
+
"url": "https://github.com/sponsors/feross"
|
274 |
+
},
|
275 |
+
{
|
276 |
+
"type": "patreon",
|
277 |
+
"url": "https://www.patreon.com/feross"
|
278 |
+
},
|
279 |
+
{
|
280 |
+
"type": "consulting",
|
281 |
+
"url": "https://feross.org/support"
|
282 |
+
}
|
283 |
+
],
|
284 |
+
"dependencies": {
|
285 |
+
"base64-js": "^1.3.1",
|
286 |
+
"ieee754": "^1.2.1"
|
287 |
+
}
|
288 |
+
},
|
289 |
+
"node_modules/chalk": {
|
290 |
+
"version": "4.1.2",
|
291 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
292 |
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
293 |
+
"dependencies": {
|
294 |
+
"ansi-styles": "^4.1.0",
|
295 |
+
"supports-color": "^7.1.0"
|
296 |
+
},
|
297 |
+
"engines": {
|
298 |
+
"node": ">=10"
|
299 |
+
},
|
300 |
+
"funding": {
|
301 |
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
302 |
+
}
|
303 |
+
},
|
304 |
+
"node_modules/chokidar": {
|
305 |
+
"version": "3.6.0",
|
306 |
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
307 |
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
308 |
+
"dependencies": {
|
309 |
+
"anymatch": "~3.1.2",
|
310 |
+
"braces": "~3.0.2",
|
311 |
+
"glob-parent": "~5.1.2",
|
312 |
+
"is-binary-path": "~2.1.0",
|
313 |
+
"is-glob": "~4.0.1",
|
314 |
+
"normalize-path": "~3.0.0",
|
315 |
+
"readdirp": "~3.6.0"
|
316 |
+
},
|
317 |
+
"engines": {
|
318 |
+
"node": ">= 8.10.0"
|
319 |
+
},
|
320 |
+
"funding": {
|
321 |
+
"url": "https://paulmillr.com/funding/"
|
322 |
+
},
|
323 |
+
"optionalDependencies": {
|
324 |
+
"fsevents": "~2.3.2"
|
325 |
+
}
|
326 |
+
},
|
327 |
+
"node_modules/clone": {
|
328 |
+
"version": "2.1.2",
|
329 |
+
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
|
330 |
+
"integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==",
|
331 |
+
"engines": {
|
332 |
+
"node": ">=0.8"
|
333 |
+
}
|
334 |
+
},
|
335 |
+
"node_modules/close-with-grace": {
|
336 |
+
"version": "1.3.0",
|
337 |
+
"resolved": "https://registry.npmjs.org/close-with-grace/-/close-with-grace-1.3.0.tgz",
|
338 |
+
"integrity": "sha512-lvm0rmLIR5bNz4CRKW6YvCfn9Wg5Wb9A8PJ3Bb+hjyikgC1RO1W3J4z9rBXQYw97mAte7dNSQI8BmUsxdlXQyw=="
|
339 |
+
},
|
340 |
+
"node_modules/color-convert": {
|
341 |
+
"version": "2.0.1",
|
342 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
343 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
344 |
+
"dependencies": {
|
345 |
+
"color-name": "~1.1.4"
|
346 |
+
},
|
347 |
+
"engines": {
|
348 |
+
"node": ">=7.0.0"
|
349 |
+
}
|
350 |
+
},
|
351 |
+
"node_modules/color-name": {
|
352 |
+
"version": "1.1.4",
|
353 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
354 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
355 |
+
},
|
356 |
+
"node_modules/colorette": {
|
357 |
+
"version": "2.0.20",
|
358 |
+
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
|
359 |
+
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
|
360 |
+
},
|
361 |
+
"node_modules/commist": {
|
362 |
+
"version": "3.2.0",
|
363 |
+
"resolved": "https://registry.npmjs.org/commist/-/commist-3.2.0.tgz",
|
364 |
+
"integrity": "sha512-4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw=="
|
365 |
+
},
|
366 |
+
"node_modules/concat-map": {
|
367 |
+
"version": "0.0.1",
|
368 |
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
369 |
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
|
370 |
+
},
|
371 |
+
"node_modules/cookie": {
|
372 |
+
"version": "0.6.0",
|
373 |
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
374 |
+
"integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
|
375 |
+
"engines": {
|
376 |
+
"node": ">= 0.6"
|
377 |
+
}
|
378 |
+
},
|
379 |
+
"node_modules/dateformat": {
|
380 |
+
"version": "4.6.3",
|
381 |
+
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz",
|
382 |
+
"integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==",
|
383 |
+
"engines": {
|
384 |
+
"node": "*"
|
385 |
+
}
|
386 |
+
},
|
387 |
+
"node_modules/depd": {
|
388 |
+
"version": "2.0.0",
|
389 |
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
390 |
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
391 |
+
"engines": {
|
392 |
+
"node": ">= 0.8"
|
393 |
+
}
|
394 |
+
},
|
395 |
+
"node_modules/dotenv": {
|
396 |
+
"version": "16.4.5",
|
397 |
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz",
|
398 |
+
"integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==",
|
399 |
+
"engines": {
|
400 |
+
"node": ">=12"
|
401 |
+
},
|
402 |
+
"funding": {
|
403 |
+
"url": "https://dotenvx.com"
|
404 |
+
}
|
405 |
+
},
|
406 |
+
"node_modules/ejs": {
|
407 |
+
"version": "3.1.10",
|
408 |
+
"resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
|
409 |
+
"integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
|
410 |
+
"dependencies": {
|
411 |
+
"jake": "^10.8.5"
|
412 |
+
},
|
413 |
+
"bin": {
|
414 |
+
"ejs": "bin/cli.js"
|
415 |
+
},
|
416 |
+
"engines": {
|
417 |
+
"node": ">=0.10.0"
|
418 |
+
}
|
419 |
+
},
|
420 |
+
"node_modules/end-of-stream": {
|
421 |
+
"version": "1.4.4",
|
422 |
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
|
423 |
+
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
|
424 |
+
"dependencies": {
|
425 |
+
"once": "^1.4.0"
|
426 |
+
}
|
427 |
+
},
|
428 |
+
"node_modules/event-target-shim": {
|
429 |
+
"version": "5.0.1",
|
430 |
+
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
431 |
+
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
432 |
+
"engines": {
|
433 |
+
"node": ">=6"
|
434 |
+
}
|
435 |
+
},
|
436 |
+
"node_modules/events": {
|
437 |
+
"version": "3.3.0",
|
438 |
+
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
|
439 |
+
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
440 |
+
"engines": {
|
441 |
+
"node": ">=0.8.x"
|
442 |
+
}
|
443 |
+
},
|
444 |
+
"node_modules/fast-content-type-parse": {
|
445 |
+
"version": "1.1.0",
|
446 |
+
"resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-1.1.0.tgz",
|
447 |
+
"integrity": "sha512-fBHHqSTFLVnR61C+gltJuE5GkVQMV0S2nqUO8TJ+5Z3qAKG8vAx4FKai1s5jq/inV1+sREynIWSuQ6HgoSXpDQ=="
|
448 |
+
},
|
449 |
+
"node_modules/fast-copy": {
|
450 |
+
"version": "3.0.2",
|
451 |
+
"resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.2.tgz",
|
452 |
+
"integrity": "sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ=="
|
453 |
+
},
|
454 |
+
"node_modules/fast-decode-uri-component": {
|
455 |
+
"version": "1.0.1",
|
456 |
+
"resolved": "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz",
|
457 |
+
"integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg=="
|
458 |
+
},
|
459 |
+
"node_modules/fast-deep-equal": {
|
460 |
+
"version": "3.1.3",
|
461 |
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
462 |
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
|
463 |
+
},
|
464 |
+
"node_modules/fast-json-stringify": {
|
465 |
+
"version": "5.16.1",
|
466 |
+
"resolved": "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-5.16.1.tgz",
|
467 |
+
"integrity": "sha512-KAdnLvy1yu/XrRtP+LJnxbBGrhN+xXu+gt3EUvZhYGKCr3lFHq/7UFJHHFgmJKoqlh6B40bZLEv7w46B0mqn1g==",
|
468 |
+
"dependencies": {
|
469 |
+
"@fastify/merge-json-schemas": "^0.1.0",
|
470 |
+
"ajv": "^8.10.0",
|
471 |
+
"ajv-formats": "^3.0.1",
|
472 |
+
"fast-deep-equal": "^3.1.3",
|
473 |
+
"fast-uri": "^2.1.0",
|
474 |
+
"json-schema-ref-resolver": "^1.0.1",
|
475 |
+
"rfdc": "^1.2.0"
|
476 |
+
}
|
477 |
+
},
|
478 |
+
"node_modules/fast-json-stringify/node_modules/ajv-formats": {
|
479 |
+
"version": "3.0.1",
|
480 |
+
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
|
481 |
+
"integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
|
482 |
+
"dependencies": {
|
483 |
+
"ajv": "^8.0.0"
|
484 |
+
},
|
485 |
+
"peerDependencies": {
|
486 |
+
"ajv": "^8.0.0"
|
487 |
+
},
|
488 |
+
"peerDependenciesMeta": {
|
489 |
+
"ajv": {
|
490 |
+
"optional": true
|
491 |
+
}
|
492 |
+
}
|
493 |
+
},
|
494 |
+
"node_modules/fast-querystring": {
|
495 |
+
"version": "1.1.2",
|
496 |
+
"resolved": "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz",
|
497 |
+
"integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==",
|
498 |
+
"dependencies": {
|
499 |
+
"fast-decode-uri-component": "^1.0.1"
|
500 |
+
}
|
501 |
+
},
|
502 |
+
"node_modules/fast-redact": {
|
503 |
+
"version": "3.5.0",
|
504 |
+
"resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz",
|
505 |
+
"integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==",
|
506 |
+
"engines": {
|
507 |
+
"node": ">=6"
|
508 |
+
}
|
509 |
+
},
|
510 |
+
"node_modules/fast-safe-stringify": {
|
511 |
+
"version": "2.1.1",
|
512 |
+
"resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
|
513 |
+
"integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
|
514 |
+
},
|
515 |
+
"node_modules/fast-uri": {
|
516 |
+
"version": "2.4.0",
|
517 |
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-2.4.0.tgz",
|
518 |
+
"integrity": "sha512-ypuAmmMKInk5q7XcepxlnUWDLWv4GFtaJqAzWKqn62IpQ3pejtr5dTVbt3vwqVaMKmkNR55sTT+CqUKIaT21BA=="
|
519 |
+
},
|
520 |
+
"node_modules/fastify": {
|
521 |
+
"version": "4.28.1",
|
522 |
+
"resolved": "https://registry.npmjs.org/fastify/-/fastify-4.28.1.tgz",
|
523 |
+
"integrity": "sha512-kFWUtpNr4i7t5vY2EJPCN2KgMVpuqfU4NjnJNCgiNB900oiDeYqaNDRcAfeBbOF5hGixixxcKnOU4KN9z6QncQ==",
|
524 |
+
"funding": [
|
525 |
+
{
|
526 |
+
"type": "github",
|
527 |
+
"url": "https://github.com/sponsors/fastify"
|
528 |
+
},
|
529 |
+
{
|
530 |
+
"type": "opencollective",
|
531 |
+
"url": "https://opencollective.com/fastify"
|
532 |
+
}
|
533 |
+
],
|
534 |
+
"dependencies": {
|
535 |
+
"@fastify/ajv-compiler": "^3.5.0",
|
536 |
+
"@fastify/error": "^3.4.0",
|
537 |
+
"@fastify/fast-json-stringify-compiler": "^4.3.0",
|
538 |
+
"abstract-logging": "^2.0.1",
|
539 |
+
"avvio": "^8.3.0",
|
540 |
+
"fast-content-type-parse": "^1.1.0",
|
541 |
+
"fast-json-stringify": "^5.8.0",
|
542 |
+
"find-my-way": "^8.0.0",
|
543 |
+
"light-my-request": "^5.11.0",
|
544 |
+
"pino": "^9.0.0",
|
545 |
+
"process-warning": "^3.0.0",
|
546 |
+
"proxy-addr": "^2.0.7",
|
547 |
+
"rfdc": "^1.3.0",
|
548 |
+
"secure-json-parse": "^2.7.0",
|
549 |
+
"semver": "^7.5.4",
|
550 |
+
"toad-cache": "^3.3.0"
|
551 |
+
}
|
552 |
+
},
|
553 |
+
"node_modules/fastify-cli": {
|
554 |
+
"version": "6.3.0",
|
555 |
+
"resolved": "https://registry.npmjs.org/fastify-cli/-/fastify-cli-6.3.0.tgz",
|
556 |
+
"integrity": "sha512-FORXCwuBiNAArMMxp5hTthQCU9Xa7oO1wnCsGSgvuWC2k5ZarEEIXNm5RekcO9koZDQ0NACU6gGRF96Tf7ZI7Q==",
|
557 |
+
"dependencies": {
|
558 |
+
"@fastify/deepmerge": "^2.0.0",
|
559 |
+
"chalk": "^4.1.2",
|
560 |
+
"chokidar": "^3.5.2",
|
561 |
+
"close-with-grace": "^1.1.0",
|
562 |
+
"commist": "^3.0.0",
|
563 |
+
"dotenv": "^16.0.0",
|
564 |
+
"fastify": "^4.26.1",
|
565 |
+
"fastify-plugin": "^4.0.0",
|
566 |
+
"generify": "^4.0.0",
|
567 |
+
"help-me": "^4.0.1",
|
568 |
+
"is-docker": "^2.0.0",
|
569 |
+
"pino-pretty": "^11.2.0",
|
570 |
+
"pkg-up": "^3.1.0",
|
571 |
+
"resolve-from": "^5.0.0",
|
572 |
+
"semver": "^7.3.5",
|
573 |
+
"yargs-parser": "^21.1.1"
|
574 |
+
},
|
575 |
+
"bin": {
|
576 |
+
"fastify": "cli.js"
|
577 |
+
}
|
578 |
+
},
|
579 |
+
"node_modules/fastify-plugin": {
|
580 |
+
"version": "4.5.1",
|
581 |
+
"resolved": "https://registry.npmjs.org/fastify-plugin/-/fastify-plugin-4.5.1.tgz",
|
582 |
+
"integrity": "sha512-stRHYGeuqpEZTL1Ef0Ovr2ltazUT9g844X5z/zEBFLG8RYlpDiOCIG+ATvYEp+/zmc7sN29mcIMp8gvYplYPIQ=="
|
583 |
+
},
|
584 |
+
"node_modules/fastq": {
|
585 |
+
"version": "1.17.1",
|
586 |
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
|
587 |
+
"integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
|
588 |
+
"dependencies": {
|
589 |
+
"reusify": "^1.0.4"
|
590 |
+
}
|
591 |
+
},
|
592 |
+
"node_modules/filelist": {
|
593 |
+
"version": "1.0.4",
|
594 |
+
"resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
|
595 |
+
"integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
|
596 |
+
"dependencies": {
|
597 |
+
"minimatch": "^5.0.1"
|
598 |
+
}
|
599 |
+
},
|
600 |
+
"node_modules/fill-range": {
|
601 |
+
"version": "7.1.1",
|
602 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
603 |
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
604 |
+
"dependencies": {
|
605 |
+
"to-regex-range": "^5.0.1"
|
606 |
+
},
|
607 |
+
"engines": {
|
608 |
+
"node": ">=8"
|
609 |
+
}
|
610 |
+
},
|
611 |
+
"node_modules/find-my-way": {
|
612 |
+
"version": "8.2.0",
|
613 |
+
"resolved": "https://registry.npmjs.org/find-my-way/-/find-my-way-8.2.0.tgz",
|
614 |
+
"integrity": "sha512-HdWXgFYc6b1BJcOBDBwjqWuHJj1WYiqrxSh25qtU4DabpMFdj/gSunNBQb83t+8Zt67D7CXEzJWTkxaShMTMOA==",
|
615 |
+
"dependencies": {
|
616 |
+
"fast-deep-equal": "^3.1.3",
|
617 |
+
"fast-querystring": "^1.0.0",
|
618 |
+
"safe-regex2": "^3.1.0"
|
619 |
+
},
|
620 |
+
"engines": {
|
621 |
+
"node": ">=14"
|
622 |
+
}
|
623 |
+
},
|
624 |
+
"node_modules/find-up": {
|
625 |
+
"version": "3.0.0",
|
626 |
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
627 |
+
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
|
628 |
+
"dependencies": {
|
629 |
+
"locate-path": "^3.0.0"
|
630 |
+
},
|
631 |
+
"engines": {
|
632 |
+
"node": ">=6"
|
633 |
+
}
|
634 |
+
},
|
635 |
+
"node_modules/forwarded": {
|
636 |
+
"version": "0.2.0",
|
637 |
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
638 |
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
639 |
+
"engines": {
|
640 |
+
"node": ">= 0.6"
|
641 |
+
}
|
642 |
+
},
|
643 |
+
"node_modules/fs.realpath": {
|
644 |
+
"version": "1.0.0",
|
645 |
+
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
646 |
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
647 |
+
},
|
648 |
+
"node_modules/fsevents": {
|
649 |
+
"version": "2.3.3",
|
650 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
651 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
652 |
+
"hasInstallScript": true,
|
653 |
+
"optional": true,
|
654 |
+
"os": [
|
655 |
+
"darwin"
|
656 |
+
],
|
657 |
+
"engines": {
|
658 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
659 |
+
}
|
660 |
+
},
|
661 |
+
"node_modules/generify": {
|
662 |
+
"version": "4.2.0",
|
663 |
+
"resolved": "https://registry.npmjs.org/generify/-/generify-4.2.0.tgz",
|
664 |
+
"integrity": "sha512-b4cVhbPfbgbCZtK0dcUc1lASitXGEAIqukV5DDAyWm25fomWnV+C+a1yXvqikcRZXHN2j0pSDyj3cTfzq8pC7Q==",
|
665 |
+
"dependencies": {
|
666 |
+
"isbinaryfile": "^4.0.2",
|
667 |
+
"pump": "^3.0.0",
|
668 |
+
"split2": "^3.0.0",
|
669 |
+
"walker": "^1.0.6"
|
670 |
+
},
|
671 |
+
"bin": {
|
672 |
+
"generify": "generify.js"
|
673 |
+
}
|
674 |
+
},
|
675 |
+
"node_modules/glob": {
|
676 |
+
"version": "8.1.0",
|
677 |
+
"resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
|
678 |
+
"integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
|
679 |
+
"deprecated": "Glob versions prior to v9 are no longer supported",
|
680 |
+
"dependencies": {
|
681 |
+
"fs.realpath": "^1.0.0",
|
682 |
+
"inflight": "^1.0.4",
|
683 |
+
"inherits": "2",
|
684 |
+
"minimatch": "^5.0.1",
|
685 |
+
"once": "^1.3.0"
|
686 |
+
},
|
687 |
+
"engines": {
|
688 |
+
"node": ">=12"
|
689 |
+
},
|
690 |
+
"funding": {
|
691 |
+
"url": "https://github.com/sponsors/isaacs"
|
692 |
+
}
|
693 |
+
},
|
694 |
+
"node_modules/glob-parent": {
|
695 |
+
"version": "5.1.2",
|
696 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
697 |
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
698 |
+
"dependencies": {
|
699 |
+
"is-glob": "^4.0.1"
|
700 |
+
},
|
701 |
+
"engines": {
|
702 |
+
"node": ">= 6"
|
703 |
+
}
|
704 |
+
},
|
705 |
+
"node_modules/has-flag": {
|
706 |
+
"version": "4.0.0",
|
707 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
708 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
709 |
+
"engines": {
|
710 |
+
"node": ">=8"
|
711 |
+
}
|
712 |
+
},
|
713 |
+
"node_modules/help-me": {
|
714 |
+
"version": "4.2.0",
|
715 |
+
"resolved": "https://registry.npmjs.org/help-me/-/help-me-4.2.0.tgz",
|
716 |
+
"integrity": "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==",
|
717 |
+
"dependencies": {
|
718 |
+
"glob": "^8.0.0",
|
719 |
+
"readable-stream": "^3.6.0"
|
720 |
+
}
|
721 |
+
},
|
722 |
+
"node_modules/http-errors": {
|
723 |
+
"version": "2.0.0",
|
724 |
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
725 |
+
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
|
726 |
+
"dependencies": {
|
727 |
+
"depd": "2.0.0",
|
728 |
+
"inherits": "2.0.4",
|
729 |
+
"setprototypeof": "1.2.0",
|
730 |
+
"statuses": "2.0.1",
|
731 |
+
"toidentifier": "1.0.1"
|
732 |
+
},
|
733 |
+
"engines": {
|
734 |
+
"node": ">= 0.8"
|
735 |
+
}
|
736 |
+
},
|
737 |
+
"node_modules/ieee754": {
|
738 |
+
"version": "1.2.1",
|
739 |
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
740 |
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
741 |
+
"funding": [
|
742 |
+
{
|
743 |
+
"type": "github",
|
744 |
+
"url": "https://github.com/sponsors/feross"
|
745 |
+
},
|
746 |
+
{
|
747 |
+
"type": "patreon",
|
748 |
+
"url": "https://www.patreon.com/feross"
|
749 |
+
},
|
750 |
+
{
|
751 |
+
"type": "consulting",
|
752 |
+
"url": "https://feross.org/support"
|
753 |
+
}
|
754 |
+
]
|
755 |
+
},
|
756 |
+
"node_modules/inflight": {
|
757 |
+
"version": "1.0.6",
|
758 |
+
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
759 |
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
760 |
+
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
|
761 |
+
"dependencies": {
|
762 |
+
"once": "^1.3.0",
|
763 |
+
"wrappy": "1"
|
764 |
+
}
|
765 |
+
},
|
766 |
+
"node_modules/inherits": {
|
767 |
+
"version": "2.0.4",
|
768 |
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
769 |
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
770 |
+
},
|
771 |
+
"node_modules/ipaddr.js": {
|
772 |
+
"version": "1.9.1",
|
773 |
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
774 |
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
775 |
+
"engines": {
|
776 |
+
"node": ">= 0.10"
|
777 |
+
}
|
778 |
+
},
|
779 |
+
"node_modules/is-binary-path": {
|
780 |
+
"version": "2.1.0",
|
781 |
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
782 |
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
783 |
+
"dependencies": {
|
784 |
+
"binary-extensions": "^2.0.0"
|
785 |
+
},
|
786 |
+
"engines": {
|
787 |
+
"node": ">=8"
|
788 |
+
}
|
789 |
+
},
|
790 |
+
"node_modules/is-docker": {
|
791 |
+
"version": "2.2.1",
|
792 |
+
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
|
793 |
+
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
|
794 |
+
"bin": {
|
795 |
+
"is-docker": "cli.js"
|
796 |
+
},
|
797 |
+
"engines": {
|
798 |
+
"node": ">=8"
|
799 |
+
},
|
800 |
+
"funding": {
|
801 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
802 |
+
}
|
803 |
+
},
|
804 |
+
"node_modules/is-extglob": {
|
805 |
+
"version": "2.1.1",
|
806 |
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
807 |
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
808 |
+
"engines": {
|
809 |
+
"node": ">=0.10.0"
|
810 |
+
}
|
811 |
+
},
|
812 |
+
"node_modules/is-glob": {
|
813 |
+
"version": "4.0.3",
|
814 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
815 |
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
816 |
+
"dependencies": {
|
817 |
+
"is-extglob": "^2.1.1"
|
818 |
+
},
|
819 |
+
"engines": {
|
820 |
+
"node": ">=0.10.0"
|
821 |
+
}
|
822 |
+
},
|
823 |
+
"node_modules/is-number": {
|
824 |
+
"version": "7.0.0",
|
825 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
826 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
827 |
+
"engines": {
|
828 |
+
"node": ">=0.12.0"
|
829 |
+
}
|
830 |
+
},
|
831 |
+
"node_modules/isbinaryfile": {
|
832 |
+
"version": "4.0.10",
|
833 |
+
"resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz",
|
834 |
+
"integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==",
|
835 |
+
"engines": {
|
836 |
+
"node": ">= 8.0.0"
|
837 |
+
},
|
838 |
+
"funding": {
|
839 |
+
"url": "https://github.com/sponsors/gjtorikian/"
|
840 |
+
}
|
841 |
+
},
|
842 |
+
"node_modules/jake": {
|
843 |
+
"version": "10.9.2",
|
844 |
+
"resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
|
845 |
+
"integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
|
846 |
+
"dependencies": {
|
847 |
+
"async": "^3.2.3",
|
848 |
+
"chalk": "^4.0.2",
|
849 |
+
"filelist": "^1.0.4",
|
850 |
+
"minimatch": "^3.1.2"
|
851 |
+
},
|
852 |
+
"bin": {
|
853 |
+
"jake": "bin/cli.js"
|
854 |
+
},
|
855 |
+
"engines": {
|
856 |
+
"node": ">=10"
|
857 |
+
}
|
858 |
+
},
|
859 |
+
"node_modules/jake/node_modules/brace-expansion": {
|
860 |
+
"version": "1.1.11",
|
861 |
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
862 |
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
863 |
+
"dependencies": {
|
864 |
+
"balanced-match": "^1.0.0",
|
865 |
+
"concat-map": "0.0.1"
|
866 |
+
}
|
867 |
+
},
|
868 |
+
"node_modules/jake/node_modules/minimatch": {
|
869 |
+
"version": "3.1.2",
|
870 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
871 |
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
872 |
+
"dependencies": {
|
873 |
+
"brace-expansion": "^1.1.7"
|
874 |
+
},
|
875 |
+
"engines": {
|
876 |
+
"node": "*"
|
877 |
+
}
|
878 |
+
},
|
879 |
+
"node_modules/joycon": {
|
880 |
+
"version": "3.1.1",
|
881 |
+
"resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz",
|
882 |
+
"integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==",
|
883 |
+
"engines": {
|
884 |
+
"node": ">=10"
|
885 |
+
}
|
886 |
+
},
|
887 |
+
"node_modules/json-schema-ref-resolver": {
|
888 |
+
"version": "1.0.1",
|
889 |
+
"resolved": "https://registry.npmjs.org/json-schema-ref-resolver/-/json-schema-ref-resolver-1.0.1.tgz",
|
890 |
+
"integrity": "sha512-EJAj1pgHc1hxF6vo2Z3s69fMjO1INq6eGHXZ8Z6wCQeldCuwxGK9Sxf4/cScGn3FZubCVUehfWtcDM/PLteCQw==",
|
891 |
+
"dependencies": {
|
892 |
+
"fast-deep-equal": "^3.1.3"
|
893 |
+
}
|
894 |
+
},
|
895 |
+
"node_modules/json-schema-traverse": {
|
896 |
+
"version": "1.0.0",
|
897 |
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
898 |
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
|
899 |
+
},
|
900 |
+
"node_modules/light-my-request": {
|
901 |
+
"version": "5.13.0",
|
902 |
+
"resolved": "https://registry.npmjs.org/light-my-request/-/light-my-request-5.13.0.tgz",
|
903 |
+
"integrity": "sha512-9IjUN9ZyCS9pTG+KqTDEQo68Sui2lHsYBrfMyVUTTZ3XhH8PMZq7xO94Kr+eP9dhi/kcKsx4N41p2IXEBil1pQ==",
|
904 |
+
"dependencies": {
|
905 |
+
"cookie": "^0.6.0",
|
906 |
+
"process-warning": "^3.0.0",
|
907 |
+
"set-cookie-parser": "^2.4.1"
|
908 |
+
}
|
909 |
+
},
|
910 |
+
"node_modules/locate-path": {
|
911 |
+
"version": "3.0.0",
|
912 |
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
|
913 |
+
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
|
914 |
+
"dependencies": {
|
915 |
+
"p-locate": "^3.0.0",
|
916 |
+
"path-exists": "^3.0.0"
|
917 |
+
},
|
918 |
+
"engines": {
|
919 |
+
"node": ">=6"
|
920 |
+
}
|
921 |
+
},
|
922 |
+
"node_modules/makeerror": {
|
923 |
+
"version": "1.0.12",
|
924 |
+
"resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
|
925 |
+
"integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
|
926 |
+
"dependencies": {
|
927 |
+
"tmpl": "1.0.5"
|
928 |
+
}
|
929 |
+
},
|
930 |
+
"node_modules/media-typer": {
|
931 |
+
"version": "0.3.0",
|
932 |
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
933 |
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
934 |
+
"engines": {
|
935 |
+
"node": ">= 0.6"
|
936 |
+
}
|
937 |
+
},
|
938 |
+
"node_modules/mime-db": {
|
939 |
+
"version": "1.52.0",
|
940 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
941 |
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
942 |
+
"engines": {
|
943 |
+
"node": ">= 0.6"
|
944 |
+
}
|
945 |
+
},
|
946 |
+
"node_modules/mime-types": {
|
947 |
+
"version": "2.1.35",
|
948 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
949 |
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
950 |
+
"dependencies": {
|
951 |
+
"mime-db": "1.52.0"
|
952 |
+
},
|
953 |
+
"engines": {
|
954 |
+
"node": ">= 0.6"
|
955 |
+
}
|
956 |
+
},
|
957 |
+
"node_modules/minimatch": {
|
958 |
+
"version": "5.1.6",
|
959 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
|
960 |
+
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
|
961 |
+
"dependencies": {
|
962 |
+
"brace-expansion": "^2.0.1"
|
963 |
+
},
|
964 |
+
"engines": {
|
965 |
+
"node": ">=10"
|
966 |
+
}
|
967 |
+
},
|
968 |
+
"node_modules/minimist": {
|
969 |
+
"version": "1.2.8",
|
970 |
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
971 |
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
972 |
+
"funding": {
|
973 |
+
"url": "https://github.com/sponsors/ljharb"
|
974 |
+
}
|
975 |
+
},
|
976 |
+
"node_modules/node-cache": {
|
977 |
+
"version": "5.1.2",
|
978 |
+
"resolved": "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz",
|
979 |
+
"integrity": "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==",
|
980 |
+
"dependencies": {
|
981 |
+
"clone": "2.x"
|
982 |
+
},
|
983 |
+
"engines": {
|
984 |
+
"node": ">= 8.0.0"
|
985 |
+
}
|
986 |
+
},
|
987 |
+
"node_modules/normalize-path": {
|
988 |
+
"version": "3.0.0",
|
989 |
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
990 |
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
991 |
+
"engines": {
|
992 |
+
"node": ">=0.10.0"
|
993 |
+
}
|
994 |
+
},
|
995 |
+
"node_modules/on-exit-leak-free": {
|
996 |
+
"version": "2.1.2",
|
997 |
+
"resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz",
|
998 |
+
"integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==",
|
999 |
+
"engines": {
|
1000 |
+
"node": ">=14.0.0"
|
1001 |
+
}
|
1002 |
+
},
|
1003 |
+
"node_modules/once": {
|
1004 |
+
"version": "1.4.0",
|
1005 |
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
1006 |
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
1007 |
+
"dependencies": {
|
1008 |
+
"wrappy": "1"
|
1009 |
+
}
|
1010 |
+
},
|
1011 |
+
"node_modules/p-limit": {
|
1012 |
+
"version": "2.3.0",
|
1013 |
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
|
1014 |
+
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
|
1015 |
+
"dependencies": {
|
1016 |
+
"p-try": "^2.0.0"
|
1017 |
+
},
|
1018 |
+
"engines": {
|
1019 |
+
"node": ">=6"
|
1020 |
+
},
|
1021 |
+
"funding": {
|
1022 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1023 |
+
}
|
1024 |
+
},
|
1025 |
+
"node_modules/p-locate": {
|
1026 |
+
"version": "3.0.0",
|
1027 |
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
|
1028 |
+
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
|
1029 |
+
"dependencies": {
|
1030 |
+
"p-limit": "^2.0.0"
|
1031 |
+
},
|
1032 |
+
"engines": {
|
1033 |
+
"node": ">=6"
|
1034 |
+
}
|
1035 |
+
},
|
1036 |
+
"node_modules/p-try": {
|
1037 |
+
"version": "2.2.0",
|
1038 |
+
"resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
|
1039 |
+
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
|
1040 |
+
"engines": {
|
1041 |
+
"node": ">=6"
|
1042 |
+
}
|
1043 |
+
},
|
1044 |
+
"node_modules/path-exists": {
|
1045 |
+
"version": "3.0.0",
|
1046 |
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
|
1047 |
+
"integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
|
1048 |
+
"engines": {
|
1049 |
+
"node": ">=4"
|
1050 |
+
}
|
1051 |
+
},
|
1052 |
+
"node_modules/picomatch": {
|
1053 |
+
"version": "2.3.1",
|
1054 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
1055 |
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
1056 |
+
"engines": {
|
1057 |
+
"node": ">=8.6"
|
1058 |
+
},
|
1059 |
+
"funding": {
|
1060 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
1061 |
+
}
|
1062 |
+
},
|
1063 |
+
"node_modules/pino": {
|
1064 |
+
"version": "9.4.0",
|
1065 |
+
"resolved": "https://registry.npmjs.org/pino/-/pino-9.4.0.tgz",
|
1066 |
+
"integrity": "sha512-nbkQb5+9YPhQRz/BeQmrWpEknAaqjpAqRK8NwJpmrX/JHu7JuZC5G1CeAwJDJfGes4h+YihC6in3Q2nGb+Y09w==",
|
1067 |
+
"dependencies": {
|
1068 |
+
"atomic-sleep": "^1.0.0",
|
1069 |
+
"fast-redact": "^3.1.1",
|
1070 |
+
"on-exit-leak-free": "^2.1.0",
|
1071 |
+
"pino-abstract-transport": "^1.2.0",
|
1072 |
+
"pino-std-serializers": "^7.0.0",
|
1073 |
+
"process-warning": "^4.0.0",
|
1074 |
+
"quick-format-unescaped": "^4.0.3",
|
1075 |
+
"real-require": "^0.2.0",
|
1076 |
+
"safe-stable-stringify": "^2.3.1",
|
1077 |
+
"sonic-boom": "^4.0.1",
|
1078 |
+
"thread-stream": "^3.0.0"
|
1079 |
+
},
|
1080 |
+
"bin": {
|
1081 |
+
"pino": "bin.js"
|
1082 |
+
}
|
1083 |
+
},
|
1084 |
+
"node_modules/pino-abstract-transport": {
|
1085 |
+
"version": "1.2.0",
|
1086 |
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz",
|
1087 |
+
"integrity": "sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==",
|
1088 |
+
"dependencies": {
|
1089 |
+
"readable-stream": "^4.0.0",
|
1090 |
+
"split2": "^4.0.0"
|
1091 |
+
}
|
1092 |
+
},
|
1093 |
+
"node_modules/pino-abstract-transport/node_modules/readable-stream": {
|
1094 |
+
"version": "4.5.2",
|
1095 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
|
1096 |
+
"integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==",
|
1097 |
+
"dependencies": {
|
1098 |
+
"abort-controller": "^3.0.0",
|
1099 |
+
"buffer": "^6.0.3",
|
1100 |
+
"events": "^3.3.0",
|
1101 |
+
"process": "^0.11.10",
|
1102 |
+
"string_decoder": "^1.3.0"
|
1103 |
+
},
|
1104 |
+
"engines": {
|
1105 |
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
1106 |
+
}
|
1107 |
+
},
|
1108 |
+
"node_modules/pino-abstract-transport/node_modules/split2": {
|
1109 |
+
"version": "4.2.0",
|
1110 |
+
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
1111 |
+
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
1112 |
+
"engines": {
|
1113 |
+
"node": ">= 10.x"
|
1114 |
+
}
|
1115 |
+
},
|
1116 |
+
"node_modules/pino-pretty": {
|
1117 |
+
"version": "11.2.2",
|
1118 |
+
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-11.2.2.tgz",
|
1119 |
+
"integrity": "sha512-2FnyGir8nAJAqD3srROdrF1J5BIcMT4nwj7hHSc60El6Uxlym00UbCCd8pYIterstVBFlMyF1yFV8XdGIPbj4A==",
|
1120 |
+
"dependencies": {
|
1121 |
+
"colorette": "^2.0.7",
|
1122 |
+
"dateformat": "^4.6.3",
|
1123 |
+
"fast-copy": "^3.0.2",
|
1124 |
+
"fast-safe-stringify": "^2.1.1",
|
1125 |
+
"help-me": "^5.0.0",
|
1126 |
+
"joycon": "^3.1.1",
|
1127 |
+
"minimist": "^1.2.6",
|
1128 |
+
"on-exit-leak-free": "^2.1.0",
|
1129 |
+
"pino-abstract-transport": "^1.0.0",
|
1130 |
+
"pump": "^3.0.0",
|
1131 |
+
"readable-stream": "^4.0.0",
|
1132 |
+
"secure-json-parse": "^2.4.0",
|
1133 |
+
"sonic-boom": "^4.0.1",
|
1134 |
+
"strip-json-comments": "^3.1.1"
|
1135 |
+
},
|
1136 |
+
"bin": {
|
1137 |
+
"pino-pretty": "bin.js"
|
1138 |
+
}
|
1139 |
+
},
|
1140 |
+
"node_modules/pino-pretty/node_modules/help-me": {
|
1141 |
+
"version": "5.0.0",
|
1142 |
+
"resolved": "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz",
|
1143 |
+
"integrity": "sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg=="
|
1144 |
+
},
|
1145 |
+
"node_modules/pino-pretty/node_modules/readable-stream": {
|
1146 |
+
"version": "4.5.2",
|
1147 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
|
1148 |
+
"integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==",
|
1149 |
+
"dependencies": {
|
1150 |
+
"abort-controller": "^3.0.0",
|
1151 |
+
"buffer": "^6.0.3",
|
1152 |
+
"events": "^3.3.0",
|
1153 |
+
"process": "^0.11.10",
|
1154 |
+
"string_decoder": "^1.3.0"
|
1155 |
+
},
|
1156 |
+
"engines": {
|
1157 |
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
1158 |
+
}
|
1159 |
+
},
|
1160 |
+
"node_modules/pino-std-serializers": {
|
1161 |
+
"version": "7.0.0",
|
1162 |
+
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz",
|
1163 |
+
"integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA=="
|
1164 |
+
},
|
1165 |
+
"node_modules/pino/node_modules/process-warning": {
|
1166 |
+
"version": "4.0.0",
|
1167 |
+
"resolved": "https://registry.npmjs.org/process-warning/-/process-warning-4.0.0.tgz",
|
1168 |
+
"integrity": "sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw=="
|
1169 |
+
},
|
1170 |
+
"node_modules/pkg-up": {
|
1171 |
+
"version": "3.1.0",
|
1172 |
+
"resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
|
1173 |
+
"integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
|
1174 |
+
"dependencies": {
|
1175 |
+
"find-up": "^3.0.0"
|
1176 |
+
},
|
1177 |
+
"engines": {
|
1178 |
+
"node": ">=8"
|
1179 |
+
}
|
1180 |
+
},
|
1181 |
+
"node_modules/process": {
|
1182 |
+
"version": "0.11.10",
|
1183 |
+
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
1184 |
+
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
1185 |
+
"engines": {
|
1186 |
+
"node": ">= 0.6.0"
|
1187 |
+
}
|
1188 |
+
},
|
1189 |
+
"node_modules/process-warning": {
|
1190 |
+
"version": "3.0.0",
|
1191 |
+
"resolved": "https://registry.npmjs.org/process-warning/-/process-warning-3.0.0.tgz",
|
1192 |
+
"integrity": "sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ=="
|
1193 |
+
},
|
1194 |
+
"node_modules/proxy-addr": {
|
1195 |
+
"version": "2.0.7",
|
1196 |
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
1197 |
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
1198 |
+
"dependencies": {
|
1199 |
+
"forwarded": "0.2.0",
|
1200 |
+
"ipaddr.js": "1.9.1"
|
1201 |
+
},
|
1202 |
+
"engines": {
|
1203 |
+
"node": ">= 0.10"
|
1204 |
+
}
|
1205 |
+
},
|
1206 |
+
"node_modules/pump": {
|
1207 |
+
"version": "3.0.0",
|
1208 |
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
|
1209 |
+
"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
|
1210 |
+
"dependencies": {
|
1211 |
+
"end-of-stream": "^1.1.0",
|
1212 |
+
"once": "^1.3.1"
|
1213 |
+
}
|
1214 |
+
},
|
1215 |
+
"node_modules/quick-format-unescaped": {
|
1216 |
+
"version": "4.0.4",
|
1217 |
+
"resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
|
1218 |
+
"integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg=="
|
1219 |
+
},
|
1220 |
+
"node_modules/readable-stream": {
|
1221 |
+
"version": "3.6.2",
|
1222 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
1223 |
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
1224 |
+
"dependencies": {
|
1225 |
+
"inherits": "^2.0.3",
|
1226 |
+
"string_decoder": "^1.1.1",
|
1227 |
+
"util-deprecate": "^1.0.1"
|
1228 |
+
},
|
1229 |
+
"engines": {
|
1230 |
+
"node": ">= 6"
|
1231 |
+
}
|
1232 |
+
},
|
1233 |
+
"node_modules/readdirp": {
|
1234 |
+
"version": "3.6.0",
|
1235 |
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
1236 |
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
1237 |
+
"dependencies": {
|
1238 |
+
"picomatch": "^2.2.1"
|
1239 |
+
},
|
1240 |
+
"engines": {
|
1241 |
+
"node": ">=8.10.0"
|
1242 |
+
}
|
1243 |
+
},
|
1244 |
+
"node_modules/real-require": {
|
1245 |
+
"version": "0.2.0",
|
1246 |
+
"resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz",
|
1247 |
+
"integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==",
|
1248 |
+
"engines": {
|
1249 |
+
"node": ">= 12.13.0"
|
1250 |
+
}
|
1251 |
+
},
|
1252 |
+
"node_modules/require-from-string": {
|
1253 |
+
"version": "2.0.2",
|
1254 |
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
1255 |
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
1256 |
+
"engines": {
|
1257 |
+
"node": ">=0.10.0"
|
1258 |
+
}
|
1259 |
+
},
|
1260 |
+
"node_modules/resolve-from": {
|
1261 |
+
"version": "5.0.0",
|
1262 |
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
1263 |
+
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
|
1264 |
+
"engines": {
|
1265 |
+
"node": ">=8"
|
1266 |
+
}
|
1267 |
+
},
|
1268 |
+
"node_modules/ret": {
|
1269 |
+
"version": "0.4.3",
|
1270 |
+
"resolved": "https://registry.npmjs.org/ret/-/ret-0.4.3.tgz",
|
1271 |
+
"integrity": "sha512-0f4Memo5QP7WQyUEAYUO3esD/XjOc3Zjjg5CPsAq1p8sIu0XPeMbHJemKA0BO7tV0X7+A0FoEpbmHXWxPyD3wQ==",
|
1272 |
+
"engines": {
|
1273 |
+
"node": ">=10"
|
1274 |
+
}
|
1275 |
+
},
|
1276 |
+
"node_modules/reusify": {
|
1277 |
+
"version": "1.0.4",
|
1278 |
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
|
1279 |
+
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
|
1280 |
+
"engines": {
|
1281 |
+
"iojs": ">=1.0.0",
|
1282 |
+
"node": ">=0.10.0"
|
1283 |
+
}
|
1284 |
+
},
|
1285 |
+
"node_modules/rfdc": {
|
1286 |
+
"version": "1.4.1",
|
1287 |
+
"resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
|
1288 |
+
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="
|
1289 |
+
},
|
1290 |
+
"node_modules/safe-buffer": {
|
1291 |
+
"version": "5.2.1",
|
1292 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
1293 |
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
1294 |
+
"funding": [
|
1295 |
+
{
|
1296 |
+
"type": "github",
|
1297 |
+
"url": "https://github.com/sponsors/feross"
|
1298 |
+
},
|
1299 |
+
{
|
1300 |
+
"type": "patreon",
|
1301 |
+
"url": "https://www.patreon.com/feross"
|
1302 |
+
},
|
1303 |
+
{
|
1304 |
+
"type": "consulting",
|
1305 |
+
"url": "https://feross.org/support"
|
1306 |
+
}
|
1307 |
+
]
|
1308 |
+
},
|
1309 |
+
"node_modules/safe-regex2": {
|
1310 |
+
"version": "3.1.0",
|
1311 |
+
"resolved": "https://registry.npmjs.org/safe-regex2/-/safe-regex2-3.1.0.tgz",
|
1312 |
+
"integrity": "sha512-RAAZAGbap2kBfbVhvmnTFv73NWLMvDGOITFYTZBAaY8eR+Ir4ef7Up/e7amo+y1+AH+3PtLkrt9mvcTsG9LXug==",
|
1313 |
+
"dependencies": {
|
1314 |
+
"ret": "~0.4.0"
|
1315 |
+
}
|
1316 |
+
},
|
1317 |
+
"node_modules/safe-stable-stringify": {
|
1318 |
+
"version": "2.5.0",
|
1319 |
+
"resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
|
1320 |
+
"integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
|
1321 |
+
"engines": {
|
1322 |
+
"node": ">=10"
|
1323 |
+
}
|
1324 |
+
},
|
1325 |
+
"node_modules/secure-json-parse": {
|
1326 |
+
"version": "2.7.0",
|
1327 |
+
"resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz",
|
1328 |
+
"integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw=="
|
1329 |
+
},
|
1330 |
+
"node_modules/semver": {
|
1331 |
+
"version": "7.6.3",
|
1332 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
|
1333 |
+
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
|
1334 |
+
"bin": {
|
1335 |
+
"semver": "bin/semver.js"
|
1336 |
+
},
|
1337 |
+
"engines": {
|
1338 |
+
"node": ">=10"
|
1339 |
+
}
|
1340 |
+
},
|
1341 |
+
"node_modules/set-cookie-parser": {
|
1342 |
+
"version": "2.7.0",
|
1343 |
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.0.tgz",
|
1344 |
+
"integrity": "sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ=="
|
1345 |
+
},
|
1346 |
+
"node_modules/setprototypeof": {
|
1347 |
+
"version": "1.2.0",
|
1348 |
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
1349 |
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
|
1350 |
+
},
|
1351 |
+
"node_modules/sonic-boom": {
|
1352 |
+
"version": "4.1.0",
|
1353 |
+
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.1.0.tgz",
|
1354 |
+
"integrity": "sha512-NGipjjRicyJJ03rPiZCJYjwlsuP2d1/5QUviozRXC7S3WdVWNK5e3Ojieb9CCyfhq2UC+3+SRd9nG3I2lPRvUw==",
|
1355 |
+
"dependencies": {
|
1356 |
+
"atomic-sleep": "^1.0.0"
|
1357 |
+
}
|
1358 |
+
},
|
1359 |
+
"node_modules/split2": {
|
1360 |
+
"version": "3.2.2",
|
1361 |
+
"resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz",
|
1362 |
+
"integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==",
|
1363 |
+
"dependencies": {
|
1364 |
+
"readable-stream": "^3.0.0"
|
1365 |
+
}
|
1366 |
+
},
|
1367 |
+
"node_modules/statuses": {
|
1368 |
+
"version": "2.0.1",
|
1369 |
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
1370 |
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
1371 |
+
"engines": {
|
1372 |
+
"node": ">= 0.8"
|
1373 |
+
}
|
1374 |
+
},
|
1375 |
+
"node_modules/string_decoder": {
|
1376 |
+
"version": "1.3.0",
|
1377 |
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
1378 |
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
1379 |
+
"dependencies": {
|
1380 |
+
"safe-buffer": "~5.2.0"
|
1381 |
+
}
|
1382 |
+
},
|
1383 |
+
"node_modules/strip-json-comments": {
|
1384 |
+
"version": "3.1.1",
|
1385 |
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
1386 |
+
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
1387 |
+
"engines": {
|
1388 |
+
"node": ">=8"
|
1389 |
+
},
|
1390 |
+
"funding": {
|
1391 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1392 |
+
}
|
1393 |
+
},
|
1394 |
+
"node_modules/supports-color": {
|
1395 |
+
"version": "7.2.0",
|
1396 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
1397 |
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
1398 |
+
"dependencies": {
|
1399 |
+
"has-flag": "^4.0.0"
|
1400 |
+
},
|
1401 |
+
"engines": {
|
1402 |
+
"node": ">=8"
|
1403 |
+
}
|
1404 |
+
},
|
1405 |
+
"node_modules/thread-stream": {
|
1406 |
+
"version": "3.1.0",
|
1407 |
+
"resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz",
|
1408 |
+
"integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==",
|
1409 |
+
"dependencies": {
|
1410 |
+
"real-require": "^0.2.0"
|
1411 |
+
}
|
1412 |
+
},
|
1413 |
+
"node_modules/tmpl": {
|
1414 |
+
"version": "1.0.5",
|
1415 |
+
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
1416 |
+
"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
|
1417 |
+
},
|
1418 |
+
"node_modules/to-regex-range": {
|
1419 |
+
"version": "5.0.1",
|
1420 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
1421 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
1422 |
+
"dependencies": {
|
1423 |
+
"is-number": "^7.0.0"
|
1424 |
+
},
|
1425 |
+
"engines": {
|
1426 |
+
"node": ">=8.0"
|
1427 |
+
}
|
1428 |
+
},
|
1429 |
+
"node_modules/toad-cache": {
|
1430 |
+
"version": "3.7.0",
|
1431 |
+
"resolved": "https://registry.npmjs.org/toad-cache/-/toad-cache-3.7.0.tgz",
|
1432 |
+
"integrity": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==",
|
1433 |
+
"engines": {
|
1434 |
+
"node": ">=12"
|
1435 |
+
}
|
1436 |
+
},
|
1437 |
+
"node_modules/toidentifier": {
|
1438 |
+
"version": "1.0.1",
|
1439 |
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
1440 |
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
1441 |
+
"engines": {
|
1442 |
+
"node": ">=0.6"
|
1443 |
+
}
|
1444 |
+
},
|
1445 |
+
"node_modules/type-is": {
|
1446 |
+
"version": "1.6.18",
|
1447 |
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
1448 |
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
1449 |
+
"dependencies": {
|
1450 |
+
"media-typer": "0.3.0",
|
1451 |
+
"mime-types": "~2.1.24"
|
1452 |
+
},
|
1453 |
+
"engines": {
|
1454 |
+
"node": ">= 0.6"
|
1455 |
+
}
|
1456 |
+
},
|
1457 |
+
"node_modules/util-deprecate": {
|
1458 |
+
"version": "1.0.2",
|
1459 |
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
1460 |
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
1461 |
+
},
|
1462 |
+
"node_modules/vary": {
|
1463 |
+
"version": "1.1.2",
|
1464 |
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
1465 |
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
1466 |
+
"engines": {
|
1467 |
+
"node": ">= 0.8"
|
1468 |
+
}
|
1469 |
+
},
|
1470 |
+
"node_modules/walker": {
|
1471 |
+
"version": "1.0.8",
|
1472 |
+
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
|
1473 |
+
"integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
|
1474 |
+
"dependencies": {
|
1475 |
+
"makeerror": "1.0.12"
|
1476 |
+
}
|
1477 |
+
},
|
1478 |
+
"node_modules/wrappy": {
|
1479 |
+
"version": "1.0.2",
|
1480 |
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
1481 |
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
1482 |
+
},
|
1483 |
+
"node_modules/yargs-parser": {
|
1484 |
+
"version": "21.1.1",
|
1485 |
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
|
1486 |
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
|
1487 |
+
"engines": {
|
1488 |
+
"node": ">=12"
|
1489 |
+
}
|
1490 |
+
}
|
1491 |
+
}
|
1492 |
+
}
|
package.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "fastify-cached-gen",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "This project was bootstrapped with Fastify-CLI.",
|
5 |
+
"main": "app.js",
|
6 |
+
"directories": {
|
7 |
+
"test": "test"
|
8 |
+
},
|
9 |
+
"scripts": {
|
10 |
+
"test": "node --test test/**/*.test.js",
|
11 |
+
"start": "fastify start -l info app.js",
|
12 |
+
"dev": "fastify start -w -l info -P app.js"
|
13 |
+
},
|
14 |
+
"keywords": [],
|
15 |
+
"author": "",
|
16 |
+
"license": "ISC",
|
17 |
+
"dependencies": {
|
18 |
+
"@fastify/autoload": "^5.0.0",
|
19 |
+
"@fastify/sensible": "^5.0.0",
|
20 |
+
"@fastify/view": "^9.1.0",
|
21 |
+
"@huggingface/inference": "^2.8.0",
|
22 |
+
"dotenv": "^16.4.5",
|
23 |
+
"ejs": "^3.1.10",
|
24 |
+
"fastify": "^4.26.1",
|
25 |
+
"fastify-cli": "^6.3.0",
|
26 |
+
"fastify-plugin": "^4.0.0",
|
27 |
+
"node-cache": "^5.1.2"
|
28 |
+
}
|
29 |
+
}
|
plugins/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Plugins Folder
|
2 |
+
|
3 |
+
Plugins define behavior that is common to all the routes in your
|
4 |
+
application. Authentication, caching, templates, and all the other cross
|
5 |
+
cutting concerns should be handled by plugins placed in this folder.
|
6 |
+
|
7 |
+
Files in this folder are typically defined through the
|
8 |
+
[`fastify-plugin`](https://github.com/fastify/fastify-plugin) module,
|
9 |
+
making them non-encapsulated. They can define decorators and set hooks
|
10 |
+
that will then be used in the rest of your application.
|
11 |
+
|
12 |
+
Check out:
|
13 |
+
|
14 |
+
* [The hitchhiker's guide to plugins](https://fastify.dev/docs/latest/Guides/Plugins-Guide/)
|
15 |
+
* [Fastify decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
|
16 |
+
* [Fastify lifecycle](https://fastify.dev/docs/latest/Reference/Lifecycle/).
|
plugins/fastify-view.js
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
const fp = require('fastify-plugin')
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This plugins adds some utilities to handle http errors
|
7 |
+
*
|
8 |
+
* @see https://github.com/fastify/fastify-sensible
|
9 |
+
*/
|
10 |
+
module.exports = fp(async function (fastify, opts) {
|
11 |
+
fastify.register(require('@fastify/view'), {
|
12 |
+
engine: {
|
13 |
+
ejs: require('ejs')
|
14 |
+
}
|
15 |
+
})
|
16 |
+
})
|
plugins/sensible.js
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
const fp = require('fastify-plugin')
|
4 |
+
|
5 |
+
/**
|
6 |
+
* This plugins adds some utilities to handle http errors
|
7 |
+
*
|
8 |
+
* @see https://github.com/fastify/fastify-sensible
|
9 |
+
*/
|
10 |
+
module.exports = fp(async function (fastify, opts) {
|
11 |
+
fastify.register(require('@fastify/sensible'), {
|
12 |
+
errorHandler: false
|
13 |
+
})
|
14 |
+
})
|
plugins/support.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
const fp = require('fastify-plugin')
|
4 |
+
|
5 |
+
// the use of fastify-plugin is required to be able
|
6 |
+
// to export the decorators to the outer scope
|
7 |
+
|
8 |
+
module.exports = fp(async function (fastify, opts) {
|
9 |
+
fastify.decorate('someSupport', function () {
|
10 |
+
return 'hugs'
|
11 |
+
})
|
12 |
+
})
|
routes/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Routes Folder
|
2 |
+
|
3 |
+
Routes define the pathways within your application.
|
4 |
+
Fastify's structure supports the modular monolith approach, where your
|
5 |
+
application is organized into distinct, self-contained modules.
|
6 |
+
This facilitates easier scaling and future transition to a microservice architecture.
|
7 |
+
In the future you might want to independently deploy some of those.
|
8 |
+
|
9 |
+
In this folder you should define all the routes that define the endpoints
|
10 |
+
of your web application.
|
11 |
+
Each service is a [Fastify
|
12 |
+
plugin](https://fastify.dev/docs/latest/Reference/Plugins/), it is
|
13 |
+
encapsulated (it can have its own independent plugins) and it is
|
14 |
+
typically stored in a file; be careful to group your routes logically,
|
15 |
+
e.g. all `/users` routes in a `users.js` file. We have added
|
16 |
+
a `root.js` file for you with a '/' root added.
|
17 |
+
|
18 |
+
If a single file becomes too large, create a folder and add a `index.js` file there:
|
19 |
+
this file must be a Fastify plugin, and it will be loaded automatically
|
20 |
+
by the application. You can now add as many files as you want inside that folder.
|
21 |
+
In this way you can create complex routes within a single monolith,
|
22 |
+
and eventually extract them.
|
23 |
+
|
24 |
+
If you need to share functionality between routes, place that
|
25 |
+
functionality into the `plugins` folder, and share it via
|
26 |
+
[decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
|
27 |
+
|
28 |
+
If you're a bit confused about using `async/await` to write routes, you would
|
29 |
+
better take a look at [Promise resolution](https://fastify.dev/docs/latest/Reference/Routes/#promise-resolution) for more details.
|
routes/prompt/index.js
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
const nodeCache = require('node-cache');
|
4 |
+
const dotenv = require('dotenv');
|
5 |
+
const HfInference = require('@huggingface/inference').HfInference;
|
6 |
+
|
7 |
+
dotenv.config();
|
8 |
+
|
9 |
+
const inference = new HfInference(process.env.HF_TOKEN);
|
10 |
+
const cache = new nodeCache(
|
11 |
+
{
|
12 |
+
stdTTL: 60 * 60 * 24,
|
13 |
+
checkperiod: 60 * 60,
|
14 |
+
useClones: false
|
15 |
+
}
|
16 |
+
);
|
17 |
+
|
18 |
+
const REPO_NAME = "black-forest-labs/FLUX.1-schnell"
|
19 |
+
|
20 |
+
module.exports = async function (fastify, opts) {
|
21 |
+
fastify.get('/:inputs', async function (request, reply) {
|
22 |
+
const { inputs } = request.params;
|
23 |
+
const slug = inputs.replace(/[^a-zA-Z0-9]/g, '');
|
24 |
+
|
25 |
+
if (cache.get(slug)) {
|
26 |
+
const image = await cache.get(slug);
|
27 |
+
console.log("Cache hit")
|
28 |
+
return reply
|
29 |
+
.header('Content-Type', 'image/jpeg')
|
30 |
+
.send(image);
|
31 |
+
}
|
32 |
+
|
33 |
+
const hfRequest = await inference.textToImage({
|
34 |
+
inputs,
|
35 |
+
model: REPO_NAME,
|
36 |
+
})
|
37 |
+
|
38 |
+
const buffer = await hfRequest.arrayBuffer();
|
39 |
+
const array = new Uint8Array(buffer);
|
40 |
+
|
41 |
+
cache.set(slug, array);
|
42 |
+
|
43 |
+
return reply
|
44 |
+
.header('Content-Type', 'image/jpeg')
|
45 |
+
.send(array);
|
46 |
+
})
|
47 |
+
}
|
routes/root.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
'use strict'
|
2 |
+
|
3 |
+
module.exports = async function (fastify, opts) {
|
4 |
+
fastify.get('/', async function (request, reply) {
|
5 |
+
return { root: true }
|
6 |
+
})
|
7 |
+
}
|