Spaces:
No application file
No application file
Upload 15 files
Browse files- .dockerignore +1 -0
- .gitignore +34 -0
- .prettierignore +38 -0
- .prettierrc.js +12 -0
- CONTRIBUTING.md +39 -0
- LICENSE +21 -0
- app.dockerfile +15 -0
- backend.dockerfile +18 -0
- config.toml +11 -0
- docker-compose.yaml +45 -0
- package.json +36 -0
- searxng-settings.yml +2356 -0
- searxng.dockerfile +3 -0
- tsconfig.json +17 -0
- yarn.lock +1629 -0
.dockerignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
**/node_modules
|
.gitignore
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Node.js
|
2 |
+
node_modules/
|
3 |
+
npm-debug.log
|
4 |
+
yarn-error.log
|
5 |
+
|
6 |
+
# Build output
|
7 |
+
/.next/
|
8 |
+
/out/
|
9 |
+
|
10 |
+
# IDE/Editor specific
|
11 |
+
.vscode/
|
12 |
+
.idea/
|
13 |
+
*.iml
|
14 |
+
|
15 |
+
# Environment variables
|
16 |
+
.env
|
17 |
+
.env.local
|
18 |
+
.env.development.local
|
19 |
+
.env.test.local
|
20 |
+
.env.production.local
|
21 |
+
|
22 |
+
# Config files
|
23 |
+
config.toml
|
24 |
+
|
25 |
+
# Log files
|
26 |
+
logs/
|
27 |
+
*.log
|
28 |
+
|
29 |
+
# Testing
|
30 |
+
/coverage/
|
31 |
+
|
32 |
+
# Miscellaneous
|
33 |
+
.DS_Store
|
34 |
+
Thumbs.db
|
.prettierignore
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore all files in the node_modules directory
|
2 |
+
node_modules
|
3 |
+
|
4 |
+
# Ignore all files in the .next directory (Next.js build output)
|
5 |
+
.next
|
6 |
+
|
7 |
+
# Ignore all files in the .out directory (TypeScript build output)
|
8 |
+
.out
|
9 |
+
|
10 |
+
# Ignore all files in the .cache directory (Prettier cache)
|
11 |
+
.cache
|
12 |
+
|
13 |
+
# Ignore all files in the .vscode directory (Visual Studio Code settings)
|
14 |
+
.vscode
|
15 |
+
|
16 |
+
# Ignore all files in the .idea directory (IntelliJ IDEA settings)
|
17 |
+
.idea
|
18 |
+
|
19 |
+
# Ignore all files in the dist directory (build output)
|
20 |
+
dist
|
21 |
+
|
22 |
+
# Ignore all files in the build directory (build output)
|
23 |
+
build
|
24 |
+
|
25 |
+
# Ignore all files in the coverage directory (test coverage reports)
|
26 |
+
coverage
|
27 |
+
|
28 |
+
# Ignore all files with the .log extension
|
29 |
+
*.log
|
30 |
+
|
31 |
+
# Ignore all files with the .tmp extension
|
32 |
+
*.tmp
|
33 |
+
|
34 |
+
# Ignore all files with the .swp extension
|
35 |
+
*.swp
|
36 |
+
|
37 |
+
# Ignore all files with the .DS_Store extension (macOS specific)
|
38 |
+
.DS_Store
|
.prettierrc.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/** @type {import("prettier").Config} */
|
2 |
+
|
3 |
+
const config = {
|
4 |
+
printWidth: 80,
|
5 |
+
trailingComma: 'all',
|
6 |
+
endOfLine: 'auto',
|
7 |
+
singleQuote: true,
|
8 |
+
tabWidth: 2,
|
9 |
+
semi: true,
|
10 |
+
};
|
11 |
+
|
12 |
+
module.exports = config;
|
CONTRIBUTING.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# How to Contribute to Perplexica
|
2 |
+
|
3 |
+
Hey there, thanks for deciding to contribute to Perplexica. Anything you help with will support the development of Perplexica and will make it better. Let's walk you through the key aspects to ensure your contributions are effective and in harmony with the project's setup.
|
4 |
+
|
5 |
+
## Project Structure
|
6 |
+
|
7 |
+
Perplexica's design consists of two main domains:
|
8 |
+
|
9 |
+
- **Frontend (`ui` directory)**: This is a Next.js application holding all user interface components. It's a self-contained environment that manages everything the user interacts with.
|
10 |
+
- **Backend (root and `src` directory)**: The backend logic is situated in the `src` folder, but the root directory holds the main `package.json` for backend dependency management.
|
11 |
+
|
12 |
+
## Setting Up Your Environment
|
13 |
+
|
14 |
+
Before diving into coding, setting up your local environment is key. Here's what you need to do:
|
15 |
+
|
16 |
+
### Backend
|
17 |
+
|
18 |
+
1. In the root directory, locate the `sample.config.toml` file.
|
19 |
+
2. Rename it to `config.toml` and fill in the necessary configuration fields specific to the backend.
|
20 |
+
3. Run `npm install` to install dependencies.
|
21 |
+
4. Use `npm run dev` to start the backend in development mode.
|
22 |
+
|
23 |
+
### Frontend
|
24 |
+
|
25 |
+
1. Navigate to the `ui` folder and repeat the process of renaming `.env.example` to `.env`, making sure to provide the frontend-specific variables.
|
26 |
+
2. Execute `npm install` within the `ui` directory to get the frontend dependencies ready.
|
27 |
+
3. Launch the frontend development server with `npm run dev`.
|
28 |
+
|
29 |
+
**Please note**: Docker configurations are present for setting up production environments, whereas `npm run dev` is used for development purposes.
|
30 |
+
|
31 |
+
## Coding and Contribution Practices
|
32 |
+
|
33 |
+
Before committing changes:
|
34 |
+
|
35 |
+
1. Ensure that your code functions correctly by thorough testing.
|
36 |
+
2. Always run `npm run format:write` to format your code according to the project's coding standards. This helps maintain consistency and code quality.
|
37 |
+
3. We currently do not have a code of conduct, but it is in the works. In the meantime, please be mindful of how you engage with the project and its community.
|
38 |
+
|
39 |
+
Following these steps will help maintain the integrity of Perplexica's codebase and facilitate a smoother integration of your valuable contributions. Thank you for your support and commitment to improving Perplexica.
|
LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) 2024 ItzCrazyKns
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE.
|
app.dockerfile
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:alpine
|
2 |
+
|
3 |
+
ARG NEXT_PUBLIC_WS_URL
|
4 |
+
ARG NEXT_PUBLIC_API_URL
|
5 |
+
ENV NEXT_PUBLIC_WS_URL=${NEXT_PUBLIC_WS_URL}
|
6 |
+
ENV NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
|
7 |
+
|
8 |
+
WORKDIR /home/perplexica
|
9 |
+
|
10 |
+
COPY ui /home/perplexica/
|
11 |
+
|
12 |
+
RUN yarn install
|
13 |
+
RUN yarn build
|
14 |
+
|
15 |
+
CMD ["yarn", "start"]
|
backend.dockerfile
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:alpine
|
2 |
+
|
3 |
+
ARG SEARXNG_API_URL
|
4 |
+
|
5 |
+
WORKDIR /home/perplexica
|
6 |
+
|
7 |
+
COPY src /home/perplexica/src
|
8 |
+
COPY tsconfig.json /home/perplexica/
|
9 |
+
COPY config.toml /home/perplexica/
|
10 |
+
COPY package.json /home/perplexica/
|
11 |
+
COPY yarn.lock /home/perplexica/
|
12 |
+
|
13 |
+
RUN sed -i "s|SEARXNG = \".*\"|SEARXNG = \"${SEARXNG_API_URL}\"|g" /home/perplexica/config.toml
|
14 |
+
|
15 |
+
RUN yarn install
|
16 |
+
RUN yarn build
|
17 |
+
|
18 |
+
CMD ["yarn", "start"]
|
config.toml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[GENERAL]
|
2 |
+
PORT = 3001 # Port to run the server on
|
3 |
+
SIMILARITY_MEASURE = "cosine" # "cosine" or "dot"
|
4 |
+
|
5 |
+
[API_KEYS]
|
6 |
+
OPENAI = "" # OpenAI API key - sk-1234567890abcdef1234567890abcdef
|
7 |
+
GROQ = "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"
|
8 |
+
|
9 |
+
[API_ENDPOINTS]
|
10 |
+
SEARXNG = "http://localhost:32768" # SearxNG API URL
|
11 |
+
OLLAMA = "" # Ollama API URL - http://host.docker.internal:11434
|
docker-compose.yaml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
services:
|
2 |
+
searxng:
|
3 |
+
build:
|
4 |
+
context: .
|
5 |
+
dockerfile: searxng.dockerfile
|
6 |
+
expose:
|
7 |
+
- 4000
|
8 |
+
ports:
|
9 |
+
- 4000:8080
|
10 |
+
networks:
|
11 |
+
- perplexica-network
|
12 |
+
|
13 |
+
perplexica-backend:
|
14 |
+
build:
|
15 |
+
context: .
|
16 |
+
dockerfile: backend.dockerfile
|
17 |
+
args:
|
18 |
+
- SEARXNG_API_URL=http://searxng:8080
|
19 |
+
depends_on:
|
20 |
+
- searxng
|
21 |
+
expose:
|
22 |
+
- 3001
|
23 |
+
ports:
|
24 |
+
- 3001:3001
|
25 |
+
networks:
|
26 |
+
- perplexica-network
|
27 |
+
|
28 |
+
perplexica-frontend:
|
29 |
+
build:
|
30 |
+
context: .
|
31 |
+
dockerfile: app.dockerfile
|
32 |
+
args:
|
33 |
+
- NEXT_PUBLIC_API_URL=http://127.0.0.1:3001/api
|
34 |
+
- NEXT_PUBLIC_WS_URL=ws://127.0.0.1:3001
|
35 |
+
depends_on:
|
36 |
+
- perplexica-backend
|
37 |
+
expose:
|
38 |
+
- 3000
|
39 |
+
ports:
|
40 |
+
- 3000:3000
|
41 |
+
networks:
|
42 |
+
- perplexica-network
|
43 |
+
|
44 |
+
networks:
|
45 |
+
perplexica-network:
|
package.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "perplexica-backend",
|
3 |
+
"version": "1.3.1",
|
4 |
+
"license": "MIT",
|
5 |
+
"author": "ItzCrazyKns",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node dist/app.js",
|
8 |
+
"build": "tsc",
|
9 |
+
"dev": "nodemon src/app.ts",
|
10 |
+
"format": "prettier . --check",
|
11 |
+
"format:write": "prettier . --write"
|
12 |
+
},
|
13 |
+
"devDependencies": {
|
14 |
+
"@types/cors": "^2.8.17",
|
15 |
+
"@types/express": "^4.17.21",
|
16 |
+
"@types/readable-stream": "^4.0.11",
|
17 |
+
"nodemon": "^3.1.0",
|
18 |
+
"prettier": "^3.2.5",
|
19 |
+
"ts-node": "^10.9.2",
|
20 |
+
"typescript": "^5.4.3"
|
21 |
+
},
|
22 |
+
"dependencies": {
|
23 |
+
"@iarna/toml": "^2.2.5",
|
24 |
+
"@langchain/openai": "^0.0.25",
|
25 |
+
"axios": "^1.6.8",
|
26 |
+
"compute-cosine-similarity": "^1.1.0",
|
27 |
+
"compute-dot": "^1.1.0",
|
28 |
+
"cors": "^2.8.5",
|
29 |
+
"dotenv": "^16.4.5",
|
30 |
+
"express": "^4.19.2",
|
31 |
+
"langchain": "^0.1.30",
|
32 |
+
"winston": "^3.13.0",
|
33 |
+
"ws": "^8.16.0",
|
34 |
+
"zod": "^3.22.4"
|
35 |
+
}
|
36 |
+
}
|
searxng-settings.yml
ADDED
@@ -0,0 +1,2356 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
general:
|
2 |
+
# Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
|
3 |
+
debug: false
|
4 |
+
# displayed name
|
5 |
+
instance_name: 'searxng'
|
6 |
+
# For example: https://example.com/privacy
|
7 |
+
privacypolicy_url: false
|
8 |
+
# use true to use your own donation page written in searx/info/en/donate.md
|
9 |
+
# use false to disable the donation link
|
10 |
+
donation_url: false
|
11 |
+
# mailto:[email protected]
|
12 |
+
contact_url: false
|
13 |
+
# record stats
|
14 |
+
enable_metrics: true
|
15 |
+
|
16 |
+
brand:
|
17 |
+
new_issue_url: https://github.com/searxng/searxng/issues/new
|
18 |
+
docs_url: https://docs.searxng.org/
|
19 |
+
public_instances: https://searx.space
|
20 |
+
wiki_url: https://github.com/searxng/searxng/wiki
|
21 |
+
issue_url: https://github.com/searxng/searxng/issues
|
22 |
+
# custom:
|
23 |
+
# maintainer: "Jon Doe"
|
24 |
+
# # Custom entries in the footer: [title]: [link]
|
25 |
+
# links:
|
26 |
+
# Uptime: https://uptime.searxng.org/history/darmarit-org
|
27 |
+
# About: "https://searxng.org"
|
28 |
+
|
29 |
+
search:
|
30 |
+
# Filter results. 0: None, 1: Moderate, 2: Strict
|
31 |
+
safe_search: 0
|
32 |
+
# Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex", "mwmbl",
|
33 |
+
# "seznam", "startpage", "stract", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
|
34 |
+
# by default.
|
35 |
+
autocomplete: 'google'
|
36 |
+
# minimun characters to type before autocompleter starts
|
37 |
+
autocomplete_min: 4
|
38 |
+
# Default search language - leave blank to detect from browser information or
|
39 |
+
# use codes from 'languages.py'
|
40 |
+
default_lang: 'auto'
|
41 |
+
# max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
|
42 |
+
# Available languages
|
43 |
+
# languages:
|
44 |
+
# - all
|
45 |
+
# - en
|
46 |
+
# - en-US
|
47 |
+
# - de
|
48 |
+
# - it-IT
|
49 |
+
# - fr
|
50 |
+
# - fr-BE
|
51 |
+
# ban time in seconds after engine errors
|
52 |
+
ban_time_on_fail: 5
|
53 |
+
# max ban time in seconds after engine errors
|
54 |
+
max_ban_time_on_fail: 120
|
55 |
+
suspended_times:
|
56 |
+
# Engine suspension time after error (in seconds; set to 0 to disable)
|
57 |
+
# For error "Access denied" and "HTTP error [402, 403]"
|
58 |
+
SearxEngineAccessDenied: 86400
|
59 |
+
# For error "CAPTCHA"
|
60 |
+
SearxEngineCaptcha: 86400
|
61 |
+
# For error "Too many request" and "HTTP error 429"
|
62 |
+
SearxEngineTooManyRequests: 3600
|
63 |
+
# Cloudflare CAPTCHA
|
64 |
+
cf_SearxEngineCaptcha: 1296000
|
65 |
+
cf_SearxEngineAccessDenied: 86400
|
66 |
+
# ReCAPTCHA
|
67 |
+
recaptcha_SearxEngineCaptcha: 604800
|
68 |
+
|
69 |
+
# remove format to deny access, use lower case.
|
70 |
+
# formats: [html, csv, json, rss]
|
71 |
+
formats:
|
72 |
+
- html
|
73 |
+
- json
|
74 |
+
|
75 |
+
server:
|
76 |
+
# Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}
|
77 |
+
port: 8888
|
78 |
+
bind_address: '127.0.0.1'
|
79 |
+
# public URL of the instance, to ensure correct inbound links. Is overwritten
|
80 |
+
# by ${SEARXNG_URL}.
|
81 |
+
base_url: / # "http://example.com/location"
|
82 |
+
limiter: false # rate limit the number of request on the instance, block some bots
|
83 |
+
public_instance: false # enable features designed only for public instances
|
84 |
+
|
85 |
+
# If your instance owns a /etc/searxng/settings.yml file, then set the following
|
86 |
+
# values there.
|
87 |
+
|
88 |
+
secret_key: 'a2fb23f1b02e6ee83875b09826990de0f6bd908b6638e8c10277d415f6ab852b' # Is overwritten by ${SEARXNG_SECRET}
|
89 |
+
# Proxying image results through searx
|
90 |
+
image_proxy: false
|
91 |
+
# 1.0 and 1.1 are supported
|
92 |
+
http_protocol_version: '1.0'
|
93 |
+
# POST queries are more secure as they don't show up in history but may cause
|
94 |
+
# problems when using Firefox containers
|
95 |
+
method: 'POST'
|
96 |
+
default_http_headers:
|
97 |
+
X-Content-Type-Options: nosniff
|
98 |
+
X-Download-Options: noopen
|
99 |
+
X-Robots-Tag: noindex, nofollow
|
100 |
+
Referrer-Policy: no-referrer
|
101 |
+
|
102 |
+
redis:
|
103 |
+
# URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
|
104 |
+
# https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
|
105 |
+
url: false
|
106 |
+
|
107 |
+
ui:
|
108 |
+
# Custom static path - leave it blank if you didn't change
|
109 |
+
static_path: ''
|
110 |
+
static_use_hash: false
|
111 |
+
# Custom templates path - leave it blank if you didn't change
|
112 |
+
templates_path: ''
|
113 |
+
# query_in_title: When true, the result page's titles contains the query
|
114 |
+
# it decreases the privacy, since the browser can records the page titles.
|
115 |
+
query_in_title: false
|
116 |
+
# infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
|
117 |
+
infinite_scroll: false
|
118 |
+
# ui theme
|
119 |
+
default_theme: simple
|
120 |
+
# center the results ?
|
121 |
+
center_alignment: false
|
122 |
+
# URL prefix of the internet archive, don't forget trailing slash (if needed).
|
123 |
+
# cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
|
124 |
+
# Default interface locale - leave blank to detect from browser information or
|
125 |
+
# use codes from the 'locales' config section
|
126 |
+
default_locale: ''
|
127 |
+
# Open result links in a new tab by default
|
128 |
+
# results_on_new_tab: false
|
129 |
+
theme_args:
|
130 |
+
# style of simple theme: auto, light, dark
|
131 |
+
simple_style: auto
|
132 |
+
# Perform search immediately if a category selected.
|
133 |
+
# Disable to select multiple categories at once and start the search manually.
|
134 |
+
search_on_category_select: true
|
135 |
+
# Hotkeys: default or vim
|
136 |
+
hotkeys: default
|
137 |
+
|
138 |
+
# Lock arbitrary settings on the preferences page. To find the ID of the user
|
139 |
+
# setting you want to lock, check the ID of the form on the page "preferences".
|
140 |
+
#
|
141 |
+
# preferences:
|
142 |
+
# lock:
|
143 |
+
# - language
|
144 |
+
# - autocomplete
|
145 |
+
# - method
|
146 |
+
# - query_in_title
|
147 |
+
|
148 |
+
# searx supports result proxification using an external service:
|
149 |
+
# https://github.com/asciimoo/morty uncomment below section if you have running
|
150 |
+
# morty proxy the key is base64 encoded (keep the !!binary notation)
|
151 |
+
# Note: since commit af77ec3, morty accepts a base64 encoded key.
|
152 |
+
#
|
153 |
+
# result_proxy:
|
154 |
+
# url: http://127.0.0.1:3000/
|
155 |
+
# # the key is a base64 encoded string, the YAML !!binary prefix is optional
|
156 |
+
# key: !!binary "your_morty_proxy_key"
|
157 |
+
# # [true|false] enable the "proxy" button next to each result
|
158 |
+
# proxify_results: true
|
159 |
+
|
160 |
+
# communication with search engines
|
161 |
+
#
|
162 |
+
outgoing:
|
163 |
+
# default timeout in seconds, can be override by engine
|
164 |
+
request_timeout: 3.0
|
165 |
+
# the maximum timeout in seconds
|
166 |
+
# max_request_timeout: 10.0
|
167 |
+
# suffix of searx_useragent, could contain information like an email address
|
168 |
+
# to the administrator
|
169 |
+
useragent_suffix: ''
|
170 |
+
# The maximum number of concurrent connections that may be established.
|
171 |
+
pool_connections: 100
|
172 |
+
# Allow the connection pool to maintain keep-alive connections below this
|
173 |
+
# point.
|
174 |
+
pool_maxsize: 20
|
175 |
+
# See https://www.python-httpx.org/http2/
|
176 |
+
enable_http2: true
|
177 |
+
# uncomment below section if you want to use a custom server certificate
|
178 |
+
# see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
|
179 |
+
# and https://www.python-httpx.org/compatibility/#ssl-configuration
|
180 |
+
# verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
|
181 |
+
#
|
182 |
+
# uncomment below section if you want to use a proxyq see: SOCKS proxies
|
183 |
+
# https://2.python-requests.org/en/latest/user/advanced/#proxies
|
184 |
+
# are also supported: see
|
185 |
+
# https://2.python-requests.org/en/latest/user/advanced/#socks
|
186 |
+
#
|
187 |
+
# proxies:
|
188 |
+
# all://:
|
189 |
+
# - http://proxy1:8080
|
190 |
+
# - http://proxy2:8080
|
191 |
+
#
|
192 |
+
# using_tor_proxy: true
|
193 |
+
#
|
194 |
+
# Extra seconds to add in order to account for the time taken by the proxy
|
195 |
+
#
|
196 |
+
# extra_proxy_timeout: 10.0
|
197 |
+
#
|
198 |
+
# uncomment below section only if you have more than one network interface
|
199 |
+
# which can be the source of outgoing search requests
|
200 |
+
#
|
201 |
+
# source_ips:
|
202 |
+
# - 1.1.1.1
|
203 |
+
# - 1.1.1.2
|
204 |
+
# - fe80::/126
|
205 |
+
|
206 |
+
# External plugin configuration, for more details see
|
207 |
+
# https://docs.searxng.org/dev/plugins.html
|
208 |
+
#
|
209 |
+
# plugins:
|
210 |
+
# - plugin1
|
211 |
+
# - plugin2
|
212 |
+
# - ...
|
213 |
+
|
214 |
+
# Comment or un-comment plugin to activate / deactivate by default.
|
215 |
+
#
|
216 |
+
# enabled_plugins:
|
217 |
+
# # these plugins are enabled if nothing is configured ..
|
218 |
+
# - 'Hash plugin'
|
219 |
+
# - 'Self Information'
|
220 |
+
# - 'Tracker URL remover'
|
221 |
+
# - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
|
222 |
+
# # these plugins are disabled if nothing is configured ..
|
223 |
+
# - 'Hostname replace' # see hostname_replace configuration below
|
224 |
+
# - 'Open Access DOI rewrite'
|
225 |
+
# - 'Tor check plugin'
|
226 |
+
# # Read the docs before activate: auto-detection of the language could be
|
227 |
+
# # detrimental to users expectations / users can activate the plugin in the
|
228 |
+
# # preferences if they want.
|
229 |
+
# - 'Autodetect search language'
|
230 |
+
|
231 |
+
# Configuration of the "Hostname replace" plugin:
|
232 |
+
#
|
233 |
+
# hostname_replace:
|
234 |
+
# '(.*\.)?youtube\.com$': 'invidious.example.com'
|
235 |
+
# '(.*\.)?youtu\.be$': 'invidious.example.com'
|
236 |
+
# '(.*\.)?youtube-noocookie\.com$': 'yotter.example.com'
|
237 |
+
# '(.*\.)?reddit\.com$': 'teddit.example.com'
|
238 |
+
# '(.*\.)?redd\.it$': 'teddit.example.com'
|
239 |
+
# '(www\.)?twitter\.com$': 'nitter.example.com'
|
240 |
+
# # to remove matching host names from result list, set value to false
|
241 |
+
# 'spam\.example\.com': false
|
242 |
+
|
243 |
+
checker:
|
244 |
+
# disable checker when in debug mode
|
245 |
+
off_when_debug: true
|
246 |
+
|
247 |
+
# use "scheduling: false" to disable scheduling
|
248 |
+
# scheduling: interval or int
|
249 |
+
|
250 |
+
# to activate the scheduler:
|
251 |
+
# * uncomment "scheduling" section
|
252 |
+
# * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
|
253 |
+
# to your uwsgi.ini
|
254 |
+
|
255 |
+
# scheduling:
|
256 |
+
# start_after: [300, 1800] # delay to start the first run of the checker
|
257 |
+
# every: [86400, 90000] # how often the checker runs
|
258 |
+
|
259 |
+
# additional tests: only for the YAML anchors (see the engines section)
|
260 |
+
#
|
261 |
+
additional_tests:
|
262 |
+
rosebud: &test_rosebud
|
263 |
+
matrix:
|
264 |
+
query: rosebud
|
265 |
+
lang: en
|
266 |
+
result_container:
|
267 |
+
- not_empty
|
268 |
+
- ['one_title_contains', 'citizen kane']
|
269 |
+
test:
|
270 |
+
- unique_results
|
271 |
+
|
272 |
+
android: &test_android
|
273 |
+
matrix:
|
274 |
+
query: ['android']
|
275 |
+
lang: ['en', 'de', 'fr', 'zh-CN']
|
276 |
+
result_container:
|
277 |
+
- not_empty
|
278 |
+
- ['one_title_contains', 'google']
|
279 |
+
test:
|
280 |
+
- unique_results
|
281 |
+
|
282 |
+
# tests: only for the YAML anchors (see the engines section)
|
283 |
+
tests:
|
284 |
+
infobox: &tests_infobox
|
285 |
+
infobox:
|
286 |
+
matrix:
|
287 |
+
query: ['linux', 'new york', 'bbc']
|
288 |
+
result_container:
|
289 |
+
- has_infobox
|
290 |
+
|
291 |
+
categories_as_tabs:
|
292 |
+
general:
|
293 |
+
images:
|
294 |
+
videos:
|
295 |
+
news:
|
296 |
+
map:
|
297 |
+
music:
|
298 |
+
it:
|
299 |
+
science:
|
300 |
+
files:
|
301 |
+
social media:
|
302 |
+
|
303 |
+
engines:
|
304 |
+
- name: 9gag
|
305 |
+
engine: 9gag
|
306 |
+
shortcut: 9g
|
307 |
+
disabled: true
|
308 |
+
|
309 |
+
- name: annas archive
|
310 |
+
engine: annas_archive
|
311 |
+
disabled: true
|
312 |
+
shortcut: aa
|
313 |
+
|
314 |
+
# - name: annas articles
|
315 |
+
# engine: annas_archive
|
316 |
+
# shortcut: aaa
|
317 |
+
# # https://docs.searxng.org/dev/engines/online/annas_archive.html
|
318 |
+
# aa_content: 'journal_article' # book_any .. magazine, standards_document
|
319 |
+
# aa_ext: 'pdf' # pdf, epub, ..
|
320 |
+
# aa_sort: 'newest' # newest, oldest, largest, smallest
|
321 |
+
|
322 |
+
- name: apk mirror
|
323 |
+
engine: apkmirror
|
324 |
+
timeout: 4.0
|
325 |
+
shortcut: apkm
|
326 |
+
disabled: true
|
327 |
+
|
328 |
+
- name: apple app store
|
329 |
+
engine: apple_app_store
|
330 |
+
shortcut: aps
|
331 |
+
disabled: true
|
332 |
+
|
333 |
+
# Requires Tor
|
334 |
+
- name: ahmia
|
335 |
+
engine: ahmia
|
336 |
+
categories: onions
|
337 |
+
enable_http: true
|
338 |
+
shortcut: ah
|
339 |
+
|
340 |
+
- name: anaconda
|
341 |
+
engine: xpath
|
342 |
+
paging: true
|
343 |
+
first_page_num: 0
|
344 |
+
search_url: https://anaconda.org/search?q={query}&page={pageno}
|
345 |
+
results_xpath: //tbody/tr
|
346 |
+
url_xpath: ./td/h5/a[last()]/@href
|
347 |
+
title_xpath: ./td/h5
|
348 |
+
content_xpath: ./td[h5]/text()
|
349 |
+
categories: it
|
350 |
+
timeout: 6.0
|
351 |
+
shortcut: conda
|
352 |
+
disabled: true
|
353 |
+
|
354 |
+
- name: arch linux wiki
|
355 |
+
engine: archlinux
|
356 |
+
shortcut: al
|
357 |
+
|
358 |
+
- name: artic
|
359 |
+
engine: artic
|
360 |
+
shortcut: arc
|
361 |
+
timeout: 4.0
|
362 |
+
|
363 |
+
- name: arxiv
|
364 |
+
engine: arxiv
|
365 |
+
shortcut: arx
|
366 |
+
timeout: 4.0
|
367 |
+
|
368 |
+
- name: ask
|
369 |
+
engine: ask
|
370 |
+
shortcut: ask
|
371 |
+
disabled: true
|
372 |
+
|
373 |
+
# tmp suspended: dh key too small
|
374 |
+
# - name: base
|
375 |
+
# engine: base
|
376 |
+
# shortcut: bs
|
377 |
+
|
378 |
+
- name: bandcamp
|
379 |
+
engine: bandcamp
|
380 |
+
shortcut: bc
|
381 |
+
categories: music
|
382 |
+
|
383 |
+
- name: wikipedia
|
384 |
+
engine: wikipedia
|
385 |
+
shortcut: wp
|
386 |
+
# add "list" to the array to get results in the results list
|
387 |
+
display_type: ['infobox']
|
388 |
+
base_url: 'https://{language}.wikipedia.org/'
|
389 |
+
categories: [general]
|
390 |
+
|
391 |
+
- name: bilibili
|
392 |
+
engine: bilibili
|
393 |
+
shortcut: bil
|
394 |
+
disabled: true
|
395 |
+
|
396 |
+
- name: bing
|
397 |
+
engine: bing
|
398 |
+
shortcut: bi
|
399 |
+
disabled: true
|
400 |
+
|
401 |
+
- name: bing images
|
402 |
+
engine: bing_images
|
403 |
+
shortcut: bii
|
404 |
+
|
405 |
+
- name: bing news
|
406 |
+
engine: bing_news
|
407 |
+
shortcut: bin
|
408 |
+
|
409 |
+
- name: bing videos
|
410 |
+
engine: bing_videos
|
411 |
+
shortcut: biv
|
412 |
+
|
413 |
+
- name: bitbucket
|
414 |
+
engine: xpath
|
415 |
+
paging: true
|
416 |
+
search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
|
417 |
+
url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
|
418 |
+
title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
|
419 |
+
content_xpath: //article[@class="repo-summary"]/p
|
420 |
+
categories: [it, repos]
|
421 |
+
timeout: 4.0
|
422 |
+
disabled: true
|
423 |
+
shortcut: bb
|
424 |
+
about:
|
425 |
+
website: https://bitbucket.org/
|
426 |
+
wikidata_id: Q2493781
|
427 |
+
official_api_documentation: https://developer.atlassian.com/bitbucket
|
428 |
+
use_official_api: false
|
429 |
+
require_api_key: false
|
430 |
+
results: HTML
|
431 |
+
|
432 |
+
- name: bpb
|
433 |
+
engine: bpb
|
434 |
+
shortcut: bpb
|
435 |
+
disabled: true
|
436 |
+
|
437 |
+
- name: btdigg
|
438 |
+
engine: btdigg
|
439 |
+
shortcut: bt
|
440 |
+
disabled: true
|
441 |
+
|
442 |
+
- name: ccc-tv
|
443 |
+
engine: xpath
|
444 |
+
paging: false
|
445 |
+
search_url: https://media.ccc.de/search/?q={query}
|
446 |
+
url_xpath: //div[@class="caption"]/h3/a/@href
|
447 |
+
title_xpath: //div[@class="caption"]/h3/a/text()
|
448 |
+
content_xpath: //div[@class="caption"]/h4/@title
|
449 |
+
categories: videos
|
450 |
+
disabled: true
|
451 |
+
shortcut: c3tv
|
452 |
+
about:
|
453 |
+
website: https://media.ccc.de/
|
454 |
+
wikidata_id: Q80729951
|
455 |
+
official_api_documentation: https://github.com/voc/voctoweb
|
456 |
+
use_official_api: false
|
457 |
+
require_api_key: false
|
458 |
+
results: HTML
|
459 |
+
# We don't set language: de here because media.ccc.de is not just
|
460 |
+
# for a German audience. It contains many English videos and many
|
461 |
+
# German videos have English subtitles.
|
462 |
+
|
463 |
+
- name: openverse
|
464 |
+
engine: openverse
|
465 |
+
categories: images
|
466 |
+
shortcut: opv
|
467 |
+
|
468 |
+
- name: chefkoch
|
469 |
+
engine: chefkoch
|
470 |
+
shortcut: chef
|
471 |
+
# to show premium or plus results too:
|
472 |
+
# skip_premium: false
|
473 |
+
|
474 |
+
# - name: core.ac.uk
|
475 |
+
# engine: core
|
476 |
+
# categories: science
|
477 |
+
# shortcut: cor
|
478 |
+
# # get your API key from: https://core.ac.uk/api-keys/register/
|
479 |
+
# api_key: 'unset'
|
480 |
+
|
481 |
+
- name: crossref
|
482 |
+
engine: crossref
|
483 |
+
shortcut: cr
|
484 |
+
timeout: 30
|
485 |
+
disabled: true
|
486 |
+
|
487 |
+
- name: crowdview
|
488 |
+
engine: json_engine
|
489 |
+
shortcut: cv
|
490 |
+
categories: general
|
491 |
+
paging: false
|
492 |
+
search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
|
493 |
+
results_query: results
|
494 |
+
url_query: link
|
495 |
+
title_query: title
|
496 |
+
content_query: snippet
|
497 |
+
disabled: true
|
498 |
+
about:
|
499 |
+
website: https://crowdview.ai/
|
500 |
+
|
501 |
+
- name: yep
|
502 |
+
engine: yep
|
503 |
+
shortcut: yep
|
504 |
+
categories: general
|
505 |
+
search_type: web
|
506 |
+
disabled: true
|
507 |
+
|
508 |
+
- name: yep images
|
509 |
+
engine: yep
|
510 |
+
shortcut: yepi
|
511 |
+
categories: images
|
512 |
+
search_type: images
|
513 |
+
disabled: true
|
514 |
+
|
515 |
+
- name: yep news
|
516 |
+
engine: yep
|
517 |
+
shortcut: yepn
|
518 |
+
categories: news
|
519 |
+
search_type: news
|
520 |
+
disabled: true
|
521 |
+
|
522 |
+
- name: curlie
|
523 |
+
engine: xpath
|
524 |
+
shortcut: cl
|
525 |
+
categories: general
|
526 |
+
disabled: true
|
527 |
+
paging: true
|
528 |
+
lang_all: ''
|
529 |
+
search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
|
530 |
+
page_size: 20
|
531 |
+
results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
|
532 |
+
url_xpath: ./div[@class="title-and-desc"]/a/@href
|
533 |
+
title_xpath: ./div[@class="title-and-desc"]/a/div
|
534 |
+
content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
|
535 |
+
about:
|
536 |
+
website: https://curlie.org/
|
537 |
+
wikidata_id: Q60715723
|
538 |
+
use_official_api: false
|
539 |
+
require_api_key: false
|
540 |
+
results: HTML
|
541 |
+
|
542 |
+
- name: currency
|
543 |
+
engine: currency_convert
|
544 |
+
categories: general
|
545 |
+
shortcut: cc
|
546 |
+
|
547 |
+
- name: bahnhof
|
548 |
+
engine: json_engine
|
549 |
+
search_url: https://www.bahnhof.de/api/stations/search/{query}
|
550 |
+
url_prefix: https://www.bahnhof.de/
|
551 |
+
url_query: slug
|
552 |
+
title_query: name
|
553 |
+
content_query: state
|
554 |
+
shortcut: bf
|
555 |
+
disabled: true
|
556 |
+
about:
|
557 |
+
website: https://www.bahn.de
|
558 |
+
wikidata_id: Q22811603
|
559 |
+
use_official_api: false
|
560 |
+
require_api_key: false
|
561 |
+
results: JSON
|
562 |
+
language: de
|
563 |
+
|
564 |
+
- name: deezer
|
565 |
+
engine: deezer
|
566 |
+
shortcut: dz
|
567 |
+
disabled: true
|
568 |
+
|
569 |
+
- name: destatis
|
570 |
+
engine: destatis
|
571 |
+
shortcut: destat
|
572 |
+
disabled: true
|
573 |
+
|
574 |
+
- name: deviantart
|
575 |
+
engine: deviantart
|
576 |
+
shortcut: da
|
577 |
+
timeout: 3.0
|
578 |
+
|
579 |
+
- name: ddg definitions
|
580 |
+
engine: duckduckgo_definitions
|
581 |
+
shortcut: ddd
|
582 |
+
weight: 2
|
583 |
+
disabled: true
|
584 |
+
tests: *tests_infobox
|
585 |
+
|
586 |
+
# cloudflare protected
|
587 |
+
# - name: digbt
|
588 |
+
# engine: digbt
|
589 |
+
# shortcut: dbt
|
590 |
+
# timeout: 6.0
|
591 |
+
# disabled: true
|
592 |
+
|
593 |
+
- name: docker hub
|
594 |
+
engine: docker_hub
|
595 |
+
shortcut: dh
|
596 |
+
categories: [it, packages]
|
597 |
+
|
598 |
+
- name: erowid
|
599 |
+
engine: xpath
|
600 |
+
paging: true
|
601 |
+
first_page_num: 0
|
602 |
+
page_size: 30
|
603 |
+
search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
|
604 |
+
url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
|
605 |
+
title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
|
606 |
+
content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
|
607 |
+
categories: []
|
608 |
+
shortcut: ew
|
609 |
+
disabled: true
|
610 |
+
about:
|
611 |
+
website: https://www.erowid.org/
|
612 |
+
wikidata_id: Q1430691
|
613 |
+
official_api_documentation:
|
614 |
+
use_official_api: false
|
615 |
+
require_api_key: false
|
616 |
+
results: HTML
|
617 |
+
|
618 |
+
# - name: elasticsearch
|
619 |
+
# shortcut: es
|
620 |
+
# engine: elasticsearch
|
621 |
+
# base_url: http://localhost:9200
|
622 |
+
# username: elastic
|
623 |
+
# password: changeme
|
624 |
+
# index: my-index
|
625 |
+
# # available options: match, simple_query_string, term, terms, custom
|
626 |
+
# query_type: match
|
627 |
+
# # if query_type is set to custom, provide your query here
|
628 |
+
# #custom_query_json: {"query":{"match_all": {}}}
|
629 |
+
# #show_metadata: false
|
630 |
+
# disabled: true
|
631 |
+
|
632 |
+
- name: wikidata
|
633 |
+
engine: wikidata
|
634 |
+
shortcut: wd
|
635 |
+
timeout: 3.0
|
636 |
+
weight: 2
|
637 |
+
# add "list" to the array to get results in the results list
|
638 |
+
display_type: ['infobox']
|
639 |
+
tests: *tests_infobox
|
640 |
+
categories: [general]
|
641 |
+
|
642 |
+
- name: duckduckgo
|
643 |
+
engine: duckduckgo
|
644 |
+
shortcut: ddg
|
645 |
+
|
646 |
+
- name: duckduckgo images
|
647 |
+
engine: duckduckgo_extra
|
648 |
+
categories: [images, web]
|
649 |
+
ddg_category: images
|
650 |
+
shortcut: ddi
|
651 |
+
disabled: true
|
652 |
+
|
653 |
+
- name: duckduckgo videos
|
654 |
+
engine: duckduckgo_extra
|
655 |
+
categories: [videos, web]
|
656 |
+
ddg_category: videos
|
657 |
+
shortcut: ddv
|
658 |
+
disabled: true
|
659 |
+
|
660 |
+
- name: duckduckgo news
|
661 |
+
engine: duckduckgo_extra
|
662 |
+
categories: [news, web]
|
663 |
+
ddg_category: news
|
664 |
+
shortcut: ddn
|
665 |
+
disabled: true
|
666 |
+
|
667 |
+
- name: duckduckgo weather
|
668 |
+
engine: duckduckgo_weather
|
669 |
+
shortcut: ddw
|
670 |
+
disabled: true
|
671 |
+
|
672 |
+
- name: apple maps
|
673 |
+
engine: apple_maps
|
674 |
+
shortcut: apm
|
675 |
+
disabled: true
|
676 |
+
timeout: 5.0
|
677 |
+
|
678 |
+
- name: emojipedia
|
679 |
+
engine: emojipedia
|
680 |
+
timeout: 4.0
|
681 |
+
shortcut: em
|
682 |
+
disabled: true
|
683 |
+
|
684 |
+
- name: tineye
|
685 |
+
engine: tineye
|
686 |
+
shortcut: tin
|
687 |
+
timeout: 9.0
|
688 |
+
disabled: true
|
689 |
+
|
690 |
+
- name: etymonline
|
691 |
+
engine: xpath
|
692 |
+
paging: true
|
693 |
+
search_url: https://etymonline.com/search?page={pageno}&q={query}
|
694 |
+
url_xpath: //a[contains(@class, "word__name--")]/@href
|
695 |
+
title_xpath: //a[contains(@class, "word__name--")]
|
696 |
+
content_xpath: //section[contains(@class, "word__defination")]
|
697 |
+
first_page_num: 1
|
698 |
+
shortcut: et
|
699 |
+
categories: [dictionaries]
|
700 |
+
about:
|
701 |
+
website: https://www.etymonline.com/
|
702 |
+
wikidata_id: Q1188617
|
703 |
+
official_api_documentation:
|
704 |
+
use_official_api: false
|
705 |
+
require_api_key: false
|
706 |
+
results: HTML
|
707 |
+
|
708 |
+
# - name: ebay
|
709 |
+
# engine: ebay
|
710 |
+
# shortcut: eb
|
711 |
+
# base_url: 'https://www.ebay.com'
|
712 |
+
# disabled: true
|
713 |
+
# timeout: 5
|
714 |
+
|
715 |
+
- name: 1x
|
716 |
+
engine: www1x
|
717 |
+
shortcut: 1x
|
718 |
+
timeout: 3.0
|
719 |
+
disabled: true
|
720 |
+
|
721 |
+
- name: fdroid
|
722 |
+
engine: fdroid
|
723 |
+
shortcut: fd
|
724 |
+
disabled: true
|
725 |
+
|
726 |
+
- name: flickr
|
727 |
+
categories: images
|
728 |
+
shortcut: fl
|
729 |
+
# You can use the engine using the official stable API, but you need an API
|
730 |
+
# key, see: https://www.flickr.com/services/apps/create/
|
731 |
+
# engine: flickr
|
732 |
+
# api_key: 'apikey' # required!
|
733 |
+
# Or you can use the html non-stable engine, activated by default
|
734 |
+
engine: flickr_noapi
|
735 |
+
|
736 |
+
- name: free software directory
|
737 |
+
engine: mediawiki
|
738 |
+
shortcut: fsd
|
739 |
+
categories: [it, software wikis]
|
740 |
+
base_url: https://directory.fsf.org/
|
741 |
+
search_type: title
|
742 |
+
timeout: 5.0
|
743 |
+
disabled: true
|
744 |
+
about:
|
745 |
+
website: https://directory.fsf.org/
|
746 |
+
wikidata_id: Q2470288
|
747 |
+
|
748 |
+
# - name: freesound
|
749 |
+
# engine: freesound
|
750 |
+
# shortcut: fnd
|
751 |
+
# disabled: true
|
752 |
+
# timeout: 15.0
|
753 |
+
# API key required, see: https://freesound.org/docs/api/overview.html
|
754 |
+
# api_key: MyAPIkey
|
755 |
+
|
756 |
+
- name: frinkiac
|
757 |
+
engine: frinkiac
|
758 |
+
shortcut: frk
|
759 |
+
disabled: true
|
760 |
+
|
761 |
+
- name: fyyd
|
762 |
+
engine: fyyd
|
763 |
+
shortcut: fy
|
764 |
+
timeout: 8.0
|
765 |
+
disabled: true
|
766 |
+
|
767 |
+
- name: genius
|
768 |
+
engine: genius
|
769 |
+
shortcut: gen
|
770 |
+
|
771 |
+
- name: gentoo
|
772 |
+
engine: gentoo
|
773 |
+
shortcut: ge
|
774 |
+
timeout: 10.0
|
775 |
+
|
776 |
+
- name: gitlab
|
777 |
+
engine: json_engine
|
778 |
+
paging: true
|
779 |
+
search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
|
780 |
+
url_query: web_url
|
781 |
+
title_query: name_with_namespace
|
782 |
+
content_query: description
|
783 |
+
page_size: 20
|
784 |
+
categories: [it, repos]
|
785 |
+
shortcut: gl
|
786 |
+
timeout: 10.0
|
787 |
+
disabled: true
|
788 |
+
about:
|
789 |
+
website: https://about.gitlab.com/
|
790 |
+
wikidata_id: Q16639197
|
791 |
+
official_api_documentation: https://docs.gitlab.com/ee/api/
|
792 |
+
use_official_api: false
|
793 |
+
require_api_key: false
|
794 |
+
results: JSON
|
795 |
+
|
796 |
+
- name: github
|
797 |
+
engine: github
|
798 |
+
shortcut: gh
|
799 |
+
|
800 |
+
# This a Gitea service. If you would like to use a different instance,
|
801 |
+
# change codeberg.org to URL of the desired Gitea host. Or you can create a
|
802 |
+
# new engine by copying this and changing the name, shortcut and search_url.
|
803 |
+
|
804 |
+
- name: codeberg
|
805 |
+
engine: json_engine
|
806 |
+
search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
|
807 |
+
url_query: html_url
|
808 |
+
title_query: name
|
809 |
+
content_query: description
|
810 |
+
categories: [it, repos]
|
811 |
+
shortcut: cb
|
812 |
+
disabled: true
|
813 |
+
about:
|
814 |
+
website: https://codeberg.org/
|
815 |
+
wikidata_id:
|
816 |
+
official_api_documentation: https://try.gitea.io/api/swagger
|
817 |
+
use_official_api: false
|
818 |
+
require_api_key: false
|
819 |
+
results: JSON
|
820 |
+
|
821 |
+
- name: goodreads
|
822 |
+
engine: goodreads
|
823 |
+
shortcut: good
|
824 |
+
timeout: 4.0
|
825 |
+
disabled: true
|
826 |
+
|
827 |
+
- name: google
|
828 |
+
engine: google
|
829 |
+
shortcut: go
|
830 |
+
# additional_tests:
|
831 |
+
# android: *test_android
|
832 |
+
|
833 |
+
- name: google images
|
834 |
+
engine: google_images
|
835 |
+
shortcut: goi
|
836 |
+
# additional_tests:
|
837 |
+
# android: *test_android
|
838 |
+
# dali:
|
839 |
+
# matrix:
|
840 |
+
# query: ['Dali Christ']
|
841 |
+
# lang: ['en', 'de', 'fr', 'zh-CN']
|
842 |
+
# result_container:
|
843 |
+
# - ['one_title_contains', 'Salvador']
|
844 |
+
|
845 |
+
- name: google news
|
846 |
+
engine: google_news
|
847 |
+
shortcut: gon
|
848 |
+
# additional_tests:
|
849 |
+
# android: *test_android
|
850 |
+
|
851 |
+
- name: google videos
|
852 |
+
engine: google_videos
|
853 |
+
shortcut: gov
|
854 |
+
# additional_tests:
|
855 |
+
# android: *test_android
|
856 |
+
|
857 |
+
- name: google scholar
|
858 |
+
engine: google_scholar
|
859 |
+
shortcut: gos
|
860 |
+
|
861 |
+
- name: google play apps
|
862 |
+
engine: google_play
|
863 |
+
categories: [files, apps]
|
864 |
+
shortcut: gpa
|
865 |
+
play_categ: apps
|
866 |
+
disabled: true
|
867 |
+
|
868 |
+
- name: google play movies
|
869 |
+
engine: google_play
|
870 |
+
categories: videos
|
871 |
+
shortcut: gpm
|
872 |
+
play_categ: movies
|
873 |
+
disabled: true
|
874 |
+
|
875 |
+
- name: material icons
|
876 |
+
engine: material_icons
|
877 |
+
categories: images
|
878 |
+
shortcut: mi
|
879 |
+
disabled: true
|
880 |
+
|
881 |
+
- name: gpodder
|
882 |
+
engine: json_engine
|
883 |
+
shortcut: gpod
|
884 |
+
timeout: 4.0
|
885 |
+
paging: false
|
886 |
+
search_url: https://gpodder.net/search.json?q={query}
|
887 |
+
url_query: url
|
888 |
+
title_query: title
|
889 |
+
content_query: description
|
890 |
+
page_size: 19
|
891 |
+
categories: music
|
892 |
+
disabled: true
|
893 |
+
about:
|
894 |
+
website: https://gpodder.net
|
895 |
+
wikidata_id: Q3093354
|
896 |
+
official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
|
897 |
+
use_official_api: false
|
898 |
+
requires_api_key: false
|
899 |
+
results: JSON
|
900 |
+
|
901 |
+
- name: habrahabr
|
902 |
+
engine: xpath
|
903 |
+
paging: true
|
904 |
+
search_url: https://habr.com/en/search/page{pageno}/?q={query}
|
905 |
+
results_xpath: //article[contains(@class, "tm-articles-list__item")]
|
906 |
+
url_xpath: .//a[@class="tm-title__link"]/@href
|
907 |
+
title_xpath: .//a[@class="tm-title__link"]
|
908 |
+
content_xpath: .//div[contains(@class, "article-formatted-body")]
|
909 |
+
categories: it
|
910 |
+
timeout: 4.0
|
911 |
+
disabled: true
|
912 |
+
shortcut: habr
|
913 |
+
about:
|
914 |
+
website: https://habr.com/
|
915 |
+
wikidata_id: Q4494434
|
916 |
+
official_api_documentation: https://habr.com/en/docs/help/api/
|
917 |
+
use_official_api: false
|
918 |
+
require_api_key: false
|
919 |
+
results: HTML
|
920 |
+
|
921 |
+
- name: hackernews
|
922 |
+
engine: hackernews
|
923 |
+
shortcut: hn
|
924 |
+
disabled: true
|
925 |
+
|
926 |
+
- name: hoogle
|
927 |
+
engine: xpath
|
928 |
+
paging: true
|
929 |
+
search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
|
930 |
+
results_xpath: '//div[@class="result"]'
|
931 |
+
title_xpath: './/div[@class="ans"]//a'
|
932 |
+
url_xpath: './/div[@class="ans"]//a/@href'
|
933 |
+
content_xpath: './/div[@class="from"]'
|
934 |
+
page_size: 20
|
935 |
+
categories: [it, packages]
|
936 |
+
shortcut: ho
|
937 |
+
about:
|
938 |
+
website: https://hoogle.haskell.org/
|
939 |
+
wikidata_id: Q34010
|
940 |
+
official_api_documentation: https://hackage.haskell.org/api
|
941 |
+
use_official_api: false
|
942 |
+
require_api_key: false
|
943 |
+
results: JSON
|
944 |
+
|
945 |
+
- name: imdb
|
946 |
+
engine: imdb
|
947 |
+
shortcut: imdb
|
948 |
+
timeout: 6.0
|
949 |
+
disabled: true
|
950 |
+
|
951 |
+
- name: imgur
|
952 |
+
engine: imgur
|
953 |
+
shortcut: img
|
954 |
+
disabled: true
|
955 |
+
|
956 |
+
- name: ina
|
957 |
+
engine: ina
|
958 |
+
shortcut: in
|
959 |
+
timeout: 6.0
|
960 |
+
disabled: true
|
961 |
+
|
962 |
+
- name: invidious
|
963 |
+
engine: invidious
|
964 |
+
# Instanes will be selected randomly, see https://api.invidious.io/ for
|
965 |
+
# instances that are stable (good uptime) and close to you.
|
966 |
+
base_url:
|
967 |
+
- https://invidious.io.lol
|
968 |
+
- https://invidious.fdn.fr
|
969 |
+
- https://yt.artemislena.eu
|
970 |
+
- https://invidious.tiekoetter.com
|
971 |
+
- https://invidious.flokinet.to
|
972 |
+
- https://vid.puffyan.us
|
973 |
+
- https://invidious.privacydev.net
|
974 |
+
- https://inv.tux.pizza
|
975 |
+
shortcut: iv
|
976 |
+
timeout: 3.0
|
977 |
+
disabled: true
|
978 |
+
|
979 |
+
- name: jisho
|
980 |
+
engine: jisho
|
981 |
+
shortcut: js
|
982 |
+
timeout: 3.0
|
983 |
+
disabled: true
|
984 |
+
|
985 |
+
- name: kickass
|
986 |
+
engine: kickass
|
987 |
+
base_url:
|
988 |
+
- https://kickasstorrents.to
|
989 |
+
- https://kickasstorrents.cr
|
990 |
+
- https://kickasstorrent.cr
|
991 |
+
- https://kickass.sx
|
992 |
+
- https://kat.am
|
993 |
+
shortcut: kc
|
994 |
+
timeout: 4.0
|
995 |
+
|
996 |
+
- name: lemmy communities
|
997 |
+
engine: lemmy
|
998 |
+
lemmy_type: Communities
|
999 |
+
shortcut: leco
|
1000 |
+
|
1001 |
+
- name: lemmy users
|
1002 |
+
engine: lemmy
|
1003 |
+
network: lemmy communities
|
1004 |
+
lemmy_type: Users
|
1005 |
+
shortcut: leus
|
1006 |
+
|
1007 |
+
- name: lemmy posts
|
1008 |
+
engine: lemmy
|
1009 |
+
network: lemmy communities
|
1010 |
+
lemmy_type: Posts
|
1011 |
+
shortcut: lepo
|
1012 |
+
|
1013 |
+
- name: lemmy comments
|
1014 |
+
engine: lemmy
|
1015 |
+
network: lemmy communities
|
1016 |
+
lemmy_type: Comments
|
1017 |
+
shortcut: lecom
|
1018 |
+
|
1019 |
+
- name: library genesis
|
1020 |
+
engine: xpath
|
1021 |
+
# search_url: https://libgen.is/search.php?req={query}
|
1022 |
+
search_url: https://libgen.rs/search.php?req={query}
|
1023 |
+
url_xpath: //a[contains(@href,"book/index.php?md5")]/@href
|
1024 |
+
title_xpath: //a[contains(@href,"book/")]/text()[1]
|
1025 |
+
content_xpath: //td/a[1][contains(@href,"=author")]/text()
|
1026 |
+
categories: files
|
1027 |
+
timeout: 7.0
|
1028 |
+
disabled: true
|
1029 |
+
shortcut: lg
|
1030 |
+
about:
|
1031 |
+
website: https://libgen.fun/
|
1032 |
+
wikidata_id: Q22017206
|
1033 |
+
official_api_documentation:
|
1034 |
+
use_official_api: false
|
1035 |
+
require_api_key: false
|
1036 |
+
results: HTML
|
1037 |
+
|
1038 |
+
- name: z-library
|
1039 |
+
engine: zlibrary
|
1040 |
+
shortcut: zlib
|
1041 |
+
categories: files
|
1042 |
+
timeout: 7.0
|
1043 |
+
|
1044 |
+
- name: library of congress
|
1045 |
+
engine: loc
|
1046 |
+
shortcut: loc
|
1047 |
+
categories: images
|
1048 |
+
|
1049 |
+
- name: lingva
|
1050 |
+
engine: lingva
|
1051 |
+
shortcut: lv
|
1052 |
+
# set lingva instance in url, by default it will use the official instance
|
1053 |
+
# url: https://lingva.thedaviddelta.com
|
1054 |
+
|
1055 |
+
- name: lobste.rs
|
1056 |
+
engine: xpath
|
1057 |
+
search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
|
1058 |
+
results_xpath: //li[contains(@class, "story")]
|
1059 |
+
url_xpath: .//a[@class="u-url"]/@href
|
1060 |
+
title_xpath: .//a[@class="u-url"]
|
1061 |
+
content_xpath: .//a[@class="domain"]
|
1062 |
+
categories: it
|
1063 |
+
shortcut: lo
|
1064 |
+
timeout: 5.0
|
1065 |
+
disabled: true
|
1066 |
+
about:
|
1067 |
+
website: https://lobste.rs/
|
1068 |
+
wikidata_id: Q60762874
|
1069 |
+
official_api_documentation:
|
1070 |
+
use_official_api: false
|
1071 |
+
require_api_key: false
|
1072 |
+
results: HTML
|
1073 |
+
|
1074 |
+
- name: mastodon users
|
1075 |
+
engine: mastodon
|
1076 |
+
mastodon_type: accounts
|
1077 |
+
base_url: https://mastodon.social
|
1078 |
+
shortcut: mau
|
1079 |
+
|
1080 |
+
- name: mastodon hashtags
|
1081 |
+
engine: mastodon
|
1082 |
+
mastodon_type: hashtags
|
1083 |
+
base_url: https://mastodon.social
|
1084 |
+
shortcut: mah
|
1085 |
+
|
1086 |
+
# - name: matrixrooms
|
1087 |
+
# engine: mrs
|
1088 |
+
# # https://docs.searxng.org/dev/engines/online/mrs.html
|
1089 |
+
# # base_url: https://mrs-api-host
|
1090 |
+
# shortcut: mtrx
|
1091 |
+
# disabled: true
|
1092 |
+
|
1093 |
+
- name: mdn
|
1094 |
+
shortcut: mdn
|
1095 |
+
engine: json_engine
|
1096 |
+
categories: [it]
|
1097 |
+
paging: true
|
1098 |
+
search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
|
1099 |
+
results_query: documents
|
1100 |
+
url_query: mdn_url
|
1101 |
+
url_prefix: https://developer.mozilla.org
|
1102 |
+
title_query: title
|
1103 |
+
content_query: summary
|
1104 |
+
about:
|
1105 |
+
website: https://developer.mozilla.org
|
1106 |
+
wikidata_id: Q3273508
|
1107 |
+
official_api_documentation: null
|
1108 |
+
use_official_api: false
|
1109 |
+
require_api_key: false
|
1110 |
+
results: JSON
|
1111 |
+
|
1112 |
+
- name: metacpan
|
1113 |
+
engine: metacpan
|
1114 |
+
shortcut: cpan
|
1115 |
+
disabled: true
|
1116 |
+
number_of_results: 20
|
1117 |
+
|
1118 |
+
# - name: meilisearch
|
1119 |
+
# engine: meilisearch
|
1120 |
+
# shortcut: mes
|
1121 |
+
# enable_http: true
|
1122 |
+
# base_url: http://localhost:7700
|
1123 |
+
# index: my-index
|
1124 |
+
|
1125 |
+
- name: mixcloud
|
1126 |
+
engine: mixcloud
|
1127 |
+
shortcut: mc
|
1128 |
+
|
1129 |
+
# MongoDB engine
|
1130 |
+
# Required dependency: pymongo
|
1131 |
+
# - name: mymongo
|
1132 |
+
# engine: mongodb
|
1133 |
+
# shortcut: md
|
1134 |
+
# exact_match_only: false
|
1135 |
+
# host: '127.0.0.1'
|
1136 |
+
# port: 27017
|
1137 |
+
# enable_http: true
|
1138 |
+
# results_per_page: 20
|
1139 |
+
# database: 'business'
|
1140 |
+
# collection: 'reviews' # name of the db collection
|
1141 |
+
# key: 'name' # key in the collection to search for
|
1142 |
+
|
1143 |
+
- name: mozhi
|
1144 |
+
engine: mozhi
|
1145 |
+
base_url:
|
1146 |
+
- https://mozhi.aryak.me
|
1147 |
+
- https://translate.bus-hit.me
|
1148 |
+
- https://nyc1.mz.ggtyler.dev
|
1149 |
+
# mozhi_engine: google - see https://mozhi.aryak.me for supported engines
|
1150 |
+
timeout: 4.0
|
1151 |
+
shortcut: mz
|
1152 |
+
disabled: true
|
1153 |
+
|
1154 |
+
- name: mwmbl
|
1155 |
+
engine: mwmbl
|
1156 |
+
# api_url: https://api.mwmbl.org
|
1157 |
+
shortcut: mwm
|
1158 |
+
disabled: true
|
1159 |
+
|
1160 |
+
- name: npm
|
1161 |
+
engine: json_engine
|
1162 |
+
paging: true
|
1163 |
+
first_page_num: 0
|
1164 |
+
search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
|
1165 |
+
results_query: results
|
1166 |
+
url_query: package/links/npm
|
1167 |
+
title_query: package/name
|
1168 |
+
content_query: package/description
|
1169 |
+
page_size: 25
|
1170 |
+
categories: [it, packages]
|
1171 |
+
disabled: true
|
1172 |
+
timeout: 5.0
|
1173 |
+
shortcut: npm
|
1174 |
+
about:
|
1175 |
+
website: https://npms.io/
|
1176 |
+
wikidata_id: Q7067518
|
1177 |
+
official_api_documentation: https://api-docs.npms.io/
|
1178 |
+
use_official_api: false
|
1179 |
+
require_api_key: false
|
1180 |
+
results: JSON
|
1181 |
+
|
1182 |
+
- name: nyaa
|
1183 |
+
engine: nyaa
|
1184 |
+
shortcut: nt
|
1185 |
+
disabled: true
|
1186 |
+
|
1187 |
+
- name: mankier
|
1188 |
+
engine: json_engine
|
1189 |
+
search_url: https://www.mankier.com/api/v2/mans/?q={query}
|
1190 |
+
results_query: results
|
1191 |
+
url_query: url
|
1192 |
+
title_query: name
|
1193 |
+
content_query: description
|
1194 |
+
categories: it
|
1195 |
+
shortcut: man
|
1196 |
+
about:
|
1197 |
+
website: https://www.mankier.com/
|
1198 |
+
official_api_documentation: https://www.mankier.com/api
|
1199 |
+
use_official_api: true
|
1200 |
+
require_api_key: false
|
1201 |
+
results: JSON
|
1202 |
+
|
1203 |
+
- name: odysee
|
1204 |
+
engine: odysee
|
1205 |
+
shortcut: od
|
1206 |
+
disabled: true
|
1207 |
+
|
1208 |
+
- name: openairedatasets
|
1209 |
+
engine: json_engine
|
1210 |
+
paging: true
|
1211 |
+
search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
|
1212 |
+
results_query: response/results/result
|
1213 |
+
url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
|
1214 |
+
title_query: metadata/oaf:entity/oaf:result/title/$
|
1215 |
+
content_query: metadata/oaf:entity/oaf:result/description/$
|
1216 |
+
content_html_to_text: true
|
1217 |
+
categories: 'science'
|
1218 |
+
shortcut: oad
|
1219 |
+
timeout: 5.0
|
1220 |
+
about:
|
1221 |
+
website: https://www.openaire.eu/
|
1222 |
+
wikidata_id: Q25106053
|
1223 |
+
official_api_documentation: https://api.openaire.eu/
|
1224 |
+
use_official_api: false
|
1225 |
+
require_api_key: false
|
1226 |
+
results: JSON
|
1227 |
+
|
1228 |
+
- name: openairepublications
|
1229 |
+
engine: json_engine
|
1230 |
+
paging: true
|
1231 |
+
search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
|
1232 |
+
results_query: response/results/result
|
1233 |
+
url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
|
1234 |
+
title_query: metadata/oaf:entity/oaf:result/title/$
|
1235 |
+
content_query: metadata/oaf:entity/oaf:result/description/$
|
1236 |
+
content_html_to_text: true
|
1237 |
+
categories: science
|
1238 |
+
shortcut: oap
|
1239 |
+
timeout: 5.0
|
1240 |
+
about:
|
1241 |
+
website: https://www.openaire.eu/
|
1242 |
+
wikidata_id: Q25106053
|
1243 |
+
official_api_documentation: https://api.openaire.eu/
|
1244 |
+
use_official_api: false
|
1245 |
+
require_api_key: false
|
1246 |
+
results: JSON
|
1247 |
+
|
1248 |
+
# - name: opensemanticsearch
|
1249 |
+
# engine: opensemantic
|
1250 |
+
# shortcut: oss
|
1251 |
+
# base_url: 'http://localhost:8983/solr/opensemanticsearch/'
|
1252 |
+
|
1253 |
+
- name: openstreetmap
|
1254 |
+
engine: openstreetmap
|
1255 |
+
shortcut: osm
|
1256 |
+
|
1257 |
+
- name: openrepos
|
1258 |
+
engine: xpath
|
1259 |
+
paging: true
|
1260 |
+
search_url: https://openrepos.net/search/node/{query}?page={pageno}
|
1261 |
+
url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
|
1262 |
+
title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
|
1263 |
+
content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
|
1264 |
+
categories: files
|
1265 |
+
timeout: 4.0
|
1266 |
+
disabled: true
|
1267 |
+
shortcut: or
|
1268 |
+
about:
|
1269 |
+
website: https://openrepos.net/
|
1270 |
+
wikidata_id:
|
1271 |
+
official_api_documentation:
|
1272 |
+
use_official_api: false
|
1273 |
+
require_api_key: false
|
1274 |
+
results: HTML
|
1275 |
+
|
1276 |
+
- name: packagist
|
1277 |
+
engine: json_engine
|
1278 |
+
paging: true
|
1279 |
+
search_url: https://packagist.org/search.json?q={query}&page={pageno}
|
1280 |
+
results_query: results
|
1281 |
+
url_query: url
|
1282 |
+
title_query: name
|
1283 |
+
content_query: description
|
1284 |
+
categories: [it, packages]
|
1285 |
+
disabled: true
|
1286 |
+
timeout: 5.0
|
1287 |
+
shortcut: pack
|
1288 |
+
about:
|
1289 |
+
website: https://packagist.org
|
1290 |
+
wikidata_id: Q108311377
|
1291 |
+
official_api_documentation: https://packagist.org/apidoc
|
1292 |
+
use_official_api: true
|
1293 |
+
require_api_key: false
|
1294 |
+
results: JSON
|
1295 |
+
|
1296 |
+
- name: pdbe
|
1297 |
+
engine: pdbe
|
1298 |
+
shortcut: pdb
|
1299 |
+
# Hide obsolete PDB entries. Default is not to hide obsolete structures
|
1300 |
+
# hide_obsolete: false
|
1301 |
+
|
1302 |
+
- name: photon
|
1303 |
+
engine: photon
|
1304 |
+
shortcut: ph
|
1305 |
+
|
1306 |
+
- name: pinterest
|
1307 |
+
engine: pinterest
|
1308 |
+
shortcut: pin
|
1309 |
+
|
1310 |
+
- name: piped
|
1311 |
+
engine: piped
|
1312 |
+
shortcut: ppd
|
1313 |
+
categories: videos
|
1314 |
+
piped_filter: videos
|
1315 |
+
timeout: 3.0
|
1316 |
+
|
1317 |
+
# URL to use as link and for embeds
|
1318 |
+
frontend_url: https://srv.piped.video
|
1319 |
+
# Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
|
1320 |
+
backend_url:
|
1321 |
+
- https://pipedapi.kavin.rocks
|
1322 |
+
- https://pipedapi-libre.kavin.rocks
|
1323 |
+
- https://pipedapi.adminforge.de
|
1324 |
+
|
1325 |
+
- name: piped.music
|
1326 |
+
engine: piped
|
1327 |
+
network: piped
|
1328 |
+
shortcut: ppdm
|
1329 |
+
categories: music
|
1330 |
+
piped_filter: music_songs
|
1331 |
+
timeout: 3.0
|
1332 |
+
|
1333 |
+
- name: piratebay
|
1334 |
+
engine: piratebay
|
1335 |
+
shortcut: tpb
|
1336 |
+
# You may need to change this URL to a proxy if piratebay is blocked in your
|
1337 |
+
# country
|
1338 |
+
url: https://thepiratebay.org/
|
1339 |
+
timeout: 3.0
|
1340 |
+
|
1341 |
+
- name: podcastindex
|
1342 |
+
engine: podcastindex
|
1343 |
+
shortcut: podcast
|
1344 |
+
|
1345 |
+
# Required dependency: psychopg2
|
1346 |
+
# - name: postgresql
|
1347 |
+
# engine: postgresql
|
1348 |
+
# database: postgres
|
1349 |
+
# username: postgres
|
1350 |
+
# password: postgres
|
1351 |
+
# limit: 10
|
1352 |
+
# query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
|
1353 |
+
# shortcut : psql
|
1354 |
+
|
1355 |
+
- name: presearch
|
1356 |
+
engine: presearch
|
1357 |
+
search_type: search
|
1358 |
+
categories: [general, web]
|
1359 |
+
shortcut: ps
|
1360 |
+
timeout: 4.0
|
1361 |
+
disabled: true
|
1362 |
+
|
1363 |
+
- name: presearch images
|
1364 |
+
engine: presearch
|
1365 |
+
network: presearch
|
1366 |
+
search_type: images
|
1367 |
+
categories: [images, web]
|
1368 |
+
timeout: 4.0
|
1369 |
+
shortcut: psimg
|
1370 |
+
disabled: true
|
1371 |
+
|
1372 |
+
- name: presearch videos
|
1373 |
+
engine: presearch
|
1374 |
+
network: presearch
|
1375 |
+
search_type: videos
|
1376 |
+
categories: [general, web]
|
1377 |
+
timeout: 4.0
|
1378 |
+
shortcut: psvid
|
1379 |
+
disabled: true
|
1380 |
+
|
1381 |
+
- name: presearch news
|
1382 |
+
engine: presearch
|
1383 |
+
network: presearch
|
1384 |
+
search_type: news
|
1385 |
+
categories: [news, web]
|
1386 |
+
timeout: 4.0
|
1387 |
+
shortcut: psnews
|
1388 |
+
disabled: true
|
1389 |
+
|
1390 |
+
- name: pub.dev
|
1391 |
+
engine: xpath
|
1392 |
+
shortcut: pd
|
1393 |
+
search_url: https://pub.dev/packages?q={query}&page={pageno}
|
1394 |
+
paging: true
|
1395 |
+
results_xpath: //div[contains(@class,"packages-item")]
|
1396 |
+
url_xpath: ./div/h3/a/@href
|
1397 |
+
title_xpath: ./div/h3/a
|
1398 |
+
content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
|
1399 |
+
categories: [packages, it]
|
1400 |
+
timeout: 3.0
|
1401 |
+
disabled: true
|
1402 |
+
first_page_num: 1
|
1403 |
+
about:
|
1404 |
+
website: https://pub.dev/
|
1405 |
+
official_api_documentation: https://pub.dev/help/api
|
1406 |
+
use_official_api: false
|
1407 |
+
require_api_key: false
|
1408 |
+
results: HTML
|
1409 |
+
|
1410 |
+
- name: pubmed
|
1411 |
+
engine: pubmed
|
1412 |
+
shortcut: pub
|
1413 |
+
timeout: 3.0
|
1414 |
+
|
1415 |
+
- name: pypi
|
1416 |
+
shortcut: pypi
|
1417 |
+
engine: xpath
|
1418 |
+
paging: true
|
1419 |
+
search_url: https://pypi.org/search/?q={query}&page={pageno}
|
1420 |
+
results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
|
1421 |
+
url_xpath: ./@href
|
1422 |
+
title_xpath: ./h3/span[@class="package-snippet__name"]
|
1423 |
+
content_xpath: ./p
|
1424 |
+
suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
|
1425 |
+
first_page_num: 1
|
1426 |
+
categories: [it, packages]
|
1427 |
+
about:
|
1428 |
+
website: https://pypi.org
|
1429 |
+
wikidata_id: Q2984686
|
1430 |
+
official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
|
1431 |
+
use_official_api: false
|
1432 |
+
require_api_key: false
|
1433 |
+
results: HTML
|
1434 |
+
|
1435 |
+
- name: qwant
|
1436 |
+
qwant_categ: web
|
1437 |
+
engine: qwant
|
1438 |
+
shortcut: qw
|
1439 |
+
categories: [general, web]
|
1440 |
+
additional_tests:
|
1441 |
+
rosebud: *test_rosebud
|
1442 |
+
|
1443 |
+
- name: qwant news
|
1444 |
+
qwant_categ: news
|
1445 |
+
engine: qwant
|
1446 |
+
shortcut: qwn
|
1447 |
+
categories: news
|
1448 |
+
network: qwant
|
1449 |
+
|
1450 |
+
- name: qwant images
|
1451 |
+
qwant_categ: images
|
1452 |
+
engine: qwant
|
1453 |
+
shortcut: qwi
|
1454 |
+
categories: [images, web]
|
1455 |
+
network: qwant
|
1456 |
+
|
1457 |
+
- name: qwant videos
|
1458 |
+
qwant_categ: videos
|
1459 |
+
engine: qwant
|
1460 |
+
shortcut: qwv
|
1461 |
+
categories: [videos, web]
|
1462 |
+
network: qwant
|
1463 |
+
|
1464 |
+
# - name: library
|
1465 |
+
# engine: recoll
|
1466 |
+
# shortcut: lib
|
1467 |
+
# base_url: 'https://recoll.example.org/'
|
1468 |
+
# search_dir: ''
|
1469 |
+
# mount_prefix: /export
|
1470 |
+
# dl_prefix: 'https://download.example.org'
|
1471 |
+
# timeout: 30.0
|
1472 |
+
# categories: files
|
1473 |
+
# disabled: true
|
1474 |
+
|
1475 |
+
# - name: recoll library reference
|
1476 |
+
# engine: recoll
|
1477 |
+
# base_url: 'https://recoll.example.org/'
|
1478 |
+
# search_dir: reference
|
1479 |
+
# mount_prefix: /export
|
1480 |
+
# dl_prefix: 'https://download.example.org'
|
1481 |
+
# shortcut: libr
|
1482 |
+
# timeout: 30.0
|
1483 |
+
# categories: files
|
1484 |
+
# disabled: true
|
1485 |
+
|
1486 |
+
- name: radio browser
|
1487 |
+
engine: radio_browser
|
1488 |
+
shortcut: rb
|
1489 |
+
|
1490 |
+
- name: reddit
|
1491 |
+
engine: reddit
|
1492 |
+
shortcut: re
|
1493 |
+
page_size: 25
|
1494 |
+
|
1495 |
+
- name: rottentomatoes
|
1496 |
+
engine: rottentomatoes
|
1497 |
+
shortcut: rt
|
1498 |
+
disabled: true
|
1499 |
+
|
1500 |
+
# Required dependency: redis
|
1501 |
+
# - name: myredis
|
1502 |
+
# shortcut : rds
|
1503 |
+
# engine: redis_server
|
1504 |
+
# exact_match_only: false
|
1505 |
+
# host: '127.0.0.1'
|
1506 |
+
# port: 6379
|
1507 |
+
# enable_http: true
|
1508 |
+
# password: ''
|
1509 |
+
# db: 0
|
1510 |
+
|
1511 |
+
# tmp suspended: bad certificate
|
1512 |
+
# - name: scanr structures
|
1513 |
+
# shortcut: scs
|
1514 |
+
# engine: scanr_structures
|
1515 |
+
# disabled: true
|
1516 |
+
|
1517 |
+
- name: sepiasearch
|
1518 |
+
engine: sepiasearch
|
1519 |
+
shortcut: sep
|
1520 |
+
|
1521 |
+
- name: soundcloud
|
1522 |
+
engine: soundcloud
|
1523 |
+
shortcut: sc
|
1524 |
+
|
1525 |
+
- name: stackoverflow
|
1526 |
+
engine: stackexchange
|
1527 |
+
shortcut: st
|
1528 |
+
api_site: 'stackoverflow'
|
1529 |
+
categories: [it, q&a]
|
1530 |
+
|
1531 |
+
- name: askubuntu
|
1532 |
+
engine: stackexchange
|
1533 |
+
shortcut: ubuntu
|
1534 |
+
api_site: 'askubuntu'
|
1535 |
+
categories: [it, q&a]
|
1536 |
+
|
1537 |
+
- name: internetarchivescholar
|
1538 |
+
engine: internet_archive_scholar
|
1539 |
+
shortcut: ias
|
1540 |
+
timeout: 5.0
|
1541 |
+
|
1542 |
+
- name: superuser
|
1543 |
+
engine: stackexchange
|
1544 |
+
shortcut: su
|
1545 |
+
api_site: 'superuser'
|
1546 |
+
categories: [it, q&a]
|
1547 |
+
|
1548 |
+
- name: searchcode code
|
1549 |
+
engine: searchcode_code
|
1550 |
+
shortcut: scc
|
1551 |
+
disabled: true
|
1552 |
+
|
1553 |
+
# - name: searx
|
1554 |
+
# engine: searx_engine
|
1555 |
+
# shortcut: se
|
1556 |
+
# instance_urls :
|
1557 |
+
# - http://127.0.0.1:8888/
|
1558 |
+
# - ...
|
1559 |
+
# disabled: true
|
1560 |
+
|
1561 |
+
- name: semantic scholar
|
1562 |
+
engine: semantic_scholar
|
1563 |
+
disabled: true
|
1564 |
+
shortcut: se
|
1565 |
+
|
1566 |
+
# Spotify needs API credentials
|
1567 |
+
# - name: spotify
|
1568 |
+
# engine: spotify
|
1569 |
+
# shortcut: stf
|
1570 |
+
# api_client_id: *******
|
1571 |
+
# api_client_secret: *******
|
1572 |
+
|
1573 |
+
# - name: solr
|
1574 |
+
# engine: solr
|
1575 |
+
# shortcut: slr
|
1576 |
+
# base_url: http://localhost:8983
|
1577 |
+
# collection: collection_name
|
1578 |
+
# sort: '' # sorting: asc or desc
|
1579 |
+
# field_list: '' # comma separated list of field names to display on the UI
|
1580 |
+
# default_fields: '' # default field to query
|
1581 |
+
# query_fields: '' # query fields
|
1582 |
+
# enable_http: true
|
1583 |
+
|
1584 |
+
# - name: springer nature
|
1585 |
+
# engine: springer
|
1586 |
+
# # get your API key from: https://dev.springernature.com/signup
|
1587 |
+
# # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
|
1588 |
+
# api_key: 'unset'
|
1589 |
+
# shortcut: springer
|
1590 |
+
# timeout: 15.0
|
1591 |
+
|
1592 |
+
- name: startpage
|
1593 |
+
engine: startpage
|
1594 |
+
shortcut: sp
|
1595 |
+
timeout: 6.0
|
1596 |
+
disabled: true
|
1597 |
+
additional_tests:
|
1598 |
+
rosebud: *test_rosebud
|
1599 |
+
|
1600 |
+
- name: tokyotoshokan
|
1601 |
+
engine: tokyotoshokan
|
1602 |
+
shortcut: tt
|
1603 |
+
timeout: 6.0
|
1604 |
+
disabled: true
|
1605 |
+
|
1606 |
+
- name: solidtorrents
|
1607 |
+
engine: solidtorrents
|
1608 |
+
shortcut: solid
|
1609 |
+
timeout: 4.0
|
1610 |
+
base_url:
|
1611 |
+
- https://solidtorrents.to
|
1612 |
+
- https://bitsearch.to
|
1613 |
+
|
1614 |
+
# For this demo of the sqlite engine download:
|
1615 |
+
# https://liste.mediathekview.de/filmliste-v2.db.bz2
|
1616 |
+
# and unpack into searx/data/filmliste-v2.db
|
1617 |
+
# Query to test: "!demo concert"
|
1618 |
+
#
|
1619 |
+
# - name: demo
|
1620 |
+
# engine: sqlite
|
1621 |
+
# shortcut: demo
|
1622 |
+
# categories: general
|
1623 |
+
# result_template: default.html
|
1624 |
+
# database: searx/data/filmliste-v2.db
|
1625 |
+
# query_str: >-
|
1626 |
+
# SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
|
1627 |
+
# COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
|
1628 |
+
# description AS content
|
1629 |
+
# FROM film
|
1630 |
+
# WHERE title LIKE :wildcard OR description LIKE :wildcard
|
1631 |
+
# ORDER BY duration DESC
|
1632 |
+
|
1633 |
+
- name: tagesschau
|
1634 |
+
engine: tagesschau
|
1635 |
+
# when set to false, display URLs from Tagesschau, and not the actual source
|
1636 |
+
# (e.g. NDR, WDR, SWR, HR, ...)
|
1637 |
+
use_source_url: true
|
1638 |
+
shortcut: ts
|
1639 |
+
disabled: true
|
1640 |
+
|
1641 |
+
- name: tmdb
|
1642 |
+
engine: xpath
|
1643 |
+
paging: true
|
1644 |
+
categories: movies
|
1645 |
+
search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
|
1646 |
+
results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
|
1647 |
+
url_xpath: .//div[contains(@class,"poster")]/a/@href
|
1648 |
+
thumbnail_xpath: .//img/@src
|
1649 |
+
title_xpath: .//div[contains(@class,"title")]//h2
|
1650 |
+
content_xpath: .//div[contains(@class,"overview")]
|
1651 |
+
shortcut: tm
|
1652 |
+
disabled: true
|
1653 |
+
|
1654 |
+
# Requires Tor
|
1655 |
+
- name: torch
|
1656 |
+
engine: xpath
|
1657 |
+
paging: true
|
1658 |
+
search_url: http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
|
1659 |
+
results_xpath: //table//tr
|
1660 |
+
url_xpath: ./td[2]/a
|
1661 |
+
title_xpath: ./td[2]/b
|
1662 |
+
content_xpath: ./td[2]/small
|
1663 |
+
categories: onions
|
1664 |
+
enable_http: true
|
1665 |
+
shortcut: tch
|
1666 |
+
|
1667 |
+
# torznab engine lets you query any torznab compatible indexer. Using this
|
1668 |
+
# engine in combination with Jackett opens the possibility to query a lot of
|
1669 |
+
# public and private indexers directly from SearXNG. More details at:
|
1670 |
+
# https://docs.searxng.org/dev/engines/online/torznab.html
|
1671 |
+
#
|
1672 |
+
# - name: Torznab EZTV
|
1673 |
+
# engine: torznab
|
1674 |
+
# shortcut: eztv
|
1675 |
+
# base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
|
1676 |
+
# enable_http: true # if using localhost
|
1677 |
+
# api_key: xxxxxxxxxxxxxxx
|
1678 |
+
# show_magnet_links: true
|
1679 |
+
# show_torrent_files: false
|
1680 |
+
# # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
|
1681 |
+
# torznab_categories: # optional
|
1682 |
+
# - 2000
|
1683 |
+
# - 5000
|
1684 |
+
|
1685 |
+
# tmp suspended - too slow, too many errors
|
1686 |
+
# - name: urbandictionary
|
1687 |
+
# engine : xpath
|
1688 |
+
# search_url : https://www.urbandictionary.com/define.php?term={query}
|
1689 |
+
# url_xpath : //*[@class="word"]/@href
|
1690 |
+
# title_xpath : //*[@class="def-header"]
|
1691 |
+
# content_xpath: //*[@class="meaning"]
|
1692 |
+
# shortcut: ud
|
1693 |
+
|
1694 |
+
- name: unsplash
|
1695 |
+
engine: unsplash
|
1696 |
+
shortcut: us
|
1697 |
+
|
1698 |
+
- name: yandex music
|
1699 |
+
engine: yandex_music
|
1700 |
+
shortcut: ydm
|
1701 |
+
disabled: true
|
1702 |
+
# https://yandex.com/support/music/access.html
|
1703 |
+
inactive: true
|
1704 |
+
|
1705 |
+
- name: yahoo
|
1706 |
+
engine: yahoo
|
1707 |
+
shortcut: yh
|
1708 |
+
disabled: true
|
1709 |
+
|
1710 |
+
- name: yahoo news
|
1711 |
+
engine: yahoo_news
|
1712 |
+
shortcut: yhn
|
1713 |
+
|
1714 |
+
- name: youtube
|
1715 |
+
shortcut: yt
|
1716 |
+
# You can use the engine using the official stable API, but you need an API
|
1717 |
+
# key See: https://console.developers.google.com/project
|
1718 |
+
#
|
1719 |
+
# engine: youtube_api
|
1720 |
+
# api_key: 'apikey' # required!
|
1721 |
+
#
|
1722 |
+
# Or you can use the html non-stable engine, activated by default
|
1723 |
+
engine: youtube_noapi
|
1724 |
+
|
1725 |
+
- name: dailymotion
|
1726 |
+
engine: dailymotion
|
1727 |
+
shortcut: dm
|
1728 |
+
|
1729 |
+
- name: vimeo
|
1730 |
+
engine: vimeo
|
1731 |
+
shortcut: vm
|
1732 |
+
|
1733 |
+
- name: wiby
|
1734 |
+
engine: json_engine
|
1735 |
+
paging: true
|
1736 |
+
search_url: https://wiby.me/json/?q={query}&p={pageno}
|
1737 |
+
url_query: URL
|
1738 |
+
title_query: Title
|
1739 |
+
content_query: Snippet
|
1740 |
+
categories: [general, web]
|
1741 |
+
shortcut: wib
|
1742 |
+
disabled: true
|
1743 |
+
about:
|
1744 |
+
website: https://wiby.me/
|
1745 |
+
|
1746 |
+
- name: alexandria
|
1747 |
+
engine: json_engine
|
1748 |
+
shortcut: alx
|
1749 |
+
categories: general
|
1750 |
+
paging: true
|
1751 |
+
search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
|
1752 |
+
results_query: results
|
1753 |
+
title_query: title
|
1754 |
+
url_query: url
|
1755 |
+
content_query: snippet
|
1756 |
+
timeout: 1.5
|
1757 |
+
disabled: true
|
1758 |
+
about:
|
1759 |
+
website: https://alexandria.org/
|
1760 |
+
official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
|
1761 |
+
use_official_api: true
|
1762 |
+
require_api_key: false
|
1763 |
+
results: JSON
|
1764 |
+
|
1765 |
+
- name: wikibooks
|
1766 |
+
engine: mediawiki
|
1767 |
+
weight: 0.5
|
1768 |
+
shortcut: wb
|
1769 |
+
categories: [general, wikimedia]
|
1770 |
+
base_url: 'https://{language}.wikibooks.org/'
|
1771 |
+
search_type: text
|
1772 |
+
disabled: true
|
1773 |
+
about:
|
1774 |
+
website: https://www.wikibooks.org/
|
1775 |
+
wikidata_id: Q367
|
1776 |
+
|
1777 |
+
- name: wikinews
|
1778 |
+
engine: mediawiki
|
1779 |
+
shortcut: wn
|
1780 |
+
categories: [news, wikimedia]
|
1781 |
+
base_url: 'https://{language}.wikinews.org/'
|
1782 |
+
search_type: text
|
1783 |
+
srsort: create_timestamp_desc
|
1784 |
+
about:
|
1785 |
+
website: https://www.wikinews.org/
|
1786 |
+
wikidata_id: Q964
|
1787 |
+
|
1788 |
+
- name: wikiquote
|
1789 |
+
engine: mediawiki
|
1790 |
+
weight: 0.5
|
1791 |
+
shortcut: wq
|
1792 |
+
categories: [general, wikimedia]
|
1793 |
+
base_url: 'https://{language}.wikiquote.org/'
|
1794 |
+
search_type: text
|
1795 |
+
disabled: true
|
1796 |
+
additional_tests:
|
1797 |
+
rosebud: *test_rosebud
|
1798 |
+
about:
|
1799 |
+
website: https://www.wikiquote.org/
|
1800 |
+
wikidata_id: Q369
|
1801 |
+
|
1802 |
+
- name: wikisource
|
1803 |
+
engine: mediawiki
|
1804 |
+
weight: 0.5
|
1805 |
+
shortcut: ws
|
1806 |
+
categories: [general, wikimedia]
|
1807 |
+
base_url: 'https://{language}.wikisource.org/'
|
1808 |
+
search_type: text
|
1809 |
+
disabled: true
|
1810 |
+
about:
|
1811 |
+
website: https://www.wikisource.org/
|
1812 |
+
wikidata_id: Q263
|
1813 |
+
|
1814 |
+
- name: wikispecies
|
1815 |
+
engine: mediawiki
|
1816 |
+
shortcut: wsp
|
1817 |
+
categories: [general, science, wikimedia]
|
1818 |
+
base_url: 'https://species.wikimedia.org/'
|
1819 |
+
search_type: text
|
1820 |
+
disabled: true
|
1821 |
+
about:
|
1822 |
+
website: https://species.wikimedia.org/
|
1823 |
+
wikidata_id: Q13679
|
1824 |
+
|
1825 |
+
- name: wiktionary
|
1826 |
+
engine: mediawiki
|
1827 |
+
shortcut: wt
|
1828 |
+
categories: [dictionaries, wikimedia]
|
1829 |
+
base_url: 'https://{language}.wiktionary.org/'
|
1830 |
+
search_type: text
|
1831 |
+
about:
|
1832 |
+
website: https://www.wiktionary.org/
|
1833 |
+
wikidata_id: Q151
|
1834 |
+
|
1835 |
+
- name: wikiversity
|
1836 |
+
engine: mediawiki
|
1837 |
+
weight: 0.5
|
1838 |
+
shortcut: wv
|
1839 |
+
categories: [general, wikimedia]
|
1840 |
+
base_url: 'https://{language}.wikiversity.org/'
|
1841 |
+
search_type: text
|
1842 |
+
disabled: true
|
1843 |
+
about:
|
1844 |
+
website: https://www.wikiversity.org/
|
1845 |
+
wikidata_id: Q370
|
1846 |
+
|
1847 |
+
- name: wikivoyage
|
1848 |
+
engine: mediawiki
|
1849 |
+
weight: 0.5
|
1850 |
+
shortcut: wy
|
1851 |
+
categories: [general, wikimedia]
|
1852 |
+
base_url: 'https://{language}.wikivoyage.org/'
|
1853 |
+
search_type: text
|
1854 |
+
disabled: true
|
1855 |
+
about:
|
1856 |
+
website: https://www.wikivoyage.org/
|
1857 |
+
wikidata_id: Q373
|
1858 |
+
|
1859 |
+
- name: wikicommons.images
|
1860 |
+
engine: wikicommons
|
1861 |
+
shortcut: wc
|
1862 |
+
categories: images
|
1863 |
+
number_of_results: 10
|
1864 |
+
|
1865 |
+
- name: wolframalpha
|
1866 |
+
shortcut: wa
|
1867 |
+
# You can use the engine using the official stable API, but you need an API
|
1868 |
+
# key. See: https://products.wolframalpha.com/api/
|
1869 |
+
#
|
1870 |
+
# engine: wolframalpha_api
|
1871 |
+
# api_key: ''
|
1872 |
+
#
|
1873 |
+
# Or you can use the html non-stable engine, activated by default
|
1874 |
+
engine: wolframalpha_noapi
|
1875 |
+
timeout: 6.0
|
1876 |
+
categories: general
|
1877 |
+
disabled: false
|
1878 |
+
|
1879 |
+
- name: dictzone
|
1880 |
+
engine: dictzone
|
1881 |
+
shortcut: dc
|
1882 |
+
|
1883 |
+
- name: mymemory translated
|
1884 |
+
engine: translated
|
1885 |
+
shortcut: tl
|
1886 |
+
timeout: 5.0
|
1887 |
+
# You can use without an API key, but you are limited to 1000 words/day
|
1888 |
+
# See: https://mymemory.translated.net/doc/usagelimits.php
|
1889 |
+
# api_key: ''
|
1890 |
+
|
1891 |
+
# Required dependency: mysql-connector-python
|
1892 |
+
# - name: mysql
|
1893 |
+
# engine: mysql_server
|
1894 |
+
# database: mydatabase
|
1895 |
+
# username: user
|
1896 |
+
# password: pass
|
1897 |
+
# limit: 10
|
1898 |
+
# query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
|
1899 |
+
# shortcut: mysql
|
1900 |
+
|
1901 |
+
- name: 1337x
|
1902 |
+
engine: 1337x
|
1903 |
+
shortcut: 1337x
|
1904 |
+
disabled: true
|
1905 |
+
|
1906 |
+
- name: duden
|
1907 |
+
engine: duden
|
1908 |
+
shortcut: du
|
1909 |
+
disabled: true
|
1910 |
+
|
1911 |
+
- name: seznam
|
1912 |
+
shortcut: szn
|
1913 |
+
engine: seznam
|
1914 |
+
disabled: true
|
1915 |
+
|
1916 |
+
# - name: deepl
|
1917 |
+
# engine: deepl
|
1918 |
+
# shortcut: dpl
|
1919 |
+
# # You can use the engine using the official stable API, but you need an API key
|
1920 |
+
# # See: https://www.deepl.com/pro-api?cta=header-pro-api
|
1921 |
+
# api_key: '' # required!
|
1922 |
+
# timeout: 5.0
|
1923 |
+
# disabled: true
|
1924 |
+
|
1925 |
+
- name: mojeek
|
1926 |
+
shortcut: mjk
|
1927 |
+
engine: xpath
|
1928 |
+
paging: true
|
1929 |
+
categories: [general, web]
|
1930 |
+
search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
|
1931 |
+
results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
|
1932 |
+
url_xpath: ./@href
|
1933 |
+
title_xpath: ../h2/a
|
1934 |
+
content_xpath: ..//p[@class="s"]
|
1935 |
+
suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
|
1936 |
+
first_page_num: 0
|
1937 |
+
page_size: 10
|
1938 |
+
max_page: 100
|
1939 |
+
disabled: true
|
1940 |
+
about:
|
1941 |
+
website: https://www.mojeek.com/
|
1942 |
+
wikidata_id: Q60747299
|
1943 |
+
official_api_documentation: https://www.mojeek.com/services/api.html/
|
1944 |
+
use_official_api: false
|
1945 |
+
require_api_key: false
|
1946 |
+
results: HTML
|
1947 |
+
|
1948 |
+
- name: moviepilot
|
1949 |
+
engine: moviepilot
|
1950 |
+
shortcut: mp
|
1951 |
+
disabled: true
|
1952 |
+
|
1953 |
+
- name: naver
|
1954 |
+
shortcut: nvr
|
1955 |
+
categories: [general, web]
|
1956 |
+
engine: xpath
|
1957 |
+
paging: true
|
1958 |
+
search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
|
1959 |
+
url_xpath: //a[@class="link_tit"]/@href
|
1960 |
+
title_xpath: //a[@class="link_tit"]
|
1961 |
+
content_xpath: //a[@class="total_dsc"]/div
|
1962 |
+
first_page_num: 1
|
1963 |
+
page_size: 10
|
1964 |
+
disabled: true
|
1965 |
+
about:
|
1966 |
+
website: https://www.naver.com/
|
1967 |
+
wikidata_id: Q485639
|
1968 |
+
official_api_documentation: https://developers.naver.com/docs/nmt/examples/
|
1969 |
+
use_official_api: false
|
1970 |
+
require_api_key: false
|
1971 |
+
results: HTML
|
1972 |
+
language: ko
|
1973 |
+
|
1974 |
+
- name: rubygems
|
1975 |
+
shortcut: rbg
|
1976 |
+
engine: xpath
|
1977 |
+
paging: true
|
1978 |
+
search_url: https://rubygems.org/search?page={pageno}&query={query}
|
1979 |
+
results_xpath: /html/body/main/div/a[@class="gems__gem"]
|
1980 |
+
url_xpath: ./@href
|
1981 |
+
title_xpath: ./span/h2
|
1982 |
+
content_xpath: ./span/p
|
1983 |
+
suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
|
1984 |
+
first_page_num: 1
|
1985 |
+
categories: [it, packages]
|
1986 |
+
disabled: true
|
1987 |
+
about:
|
1988 |
+
website: https://rubygems.org/
|
1989 |
+
wikidata_id: Q1853420
|
1990 |
+
official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
|
1991 |
+
use_official_api: false
|
1992 |
+
require_api_key: false
|
1993 |
+
results: HTML
|
1994 |
+
|
1995 |
+
- name: peertube
|
1996 |
+
engine: peertube
|
1997 |
+
shortcut: ptb
|
1998 |
+
paging: true
|
1999 |
+
# alternatives see: https://instances.joinpeertube.org/instances
|
2000 |
+
# base_url: https://tube.4aem.com
|
2001 |
+
categories: videos
|
2002 |
+
disabled: true
|
2003 |
+
timeout: 6.0
|
2004 |
+
|
2005 |
+
- name: mediathekviewweb
|
2006 |
+
engine: mediathekviewweb
|
2007 |
+
shortcut: mvw
|
2008 |
+
disabled: true
|
2009 |
+
|
2010 |
+
- name: yacy
|
2011 |
+
engine: yacy
|
2012 |
+
categories: general
|
2013 |
+
search_type: text
|
2014 |
+
base_url: https://yacy.searchlab.eu
|
2015 |
+
shortcut: ya
|
2016 |
+
disabled: true
|
2017 |
+
# required if you aren't using HTTPS for your local yacy instance
|
2018 |
+
# https://docs.searxng.org/dev/engines/online/yacy.html
|
2019 |
+
# enable_http: true
|
2020 |
+
# timeout: 3.0
|
2021 |
+
# search_mode: 'global'
|
2022 |
+
|
2023 |
+
- name: yacy images
|
2024 |
+
engine: yacy
|
2025 |
+
categories: images
|
2026 |
+
search_type: image
|
2027 |
+
base_url: https://yacy.searchlab.eu
|
2028 |
+
shortcut: yai
|
2029 |
+
disabled: true
|
2030 |
+
|
2031 |
+
- name: rumble
|
2032 |
+
engine: rumble
|
2033 |
+
shortcut: ru
|
2034 |
+
base_url: https://rumble.com/
|
2035 |
+
paging: true
|
2036 |
+
categories: videos
|
2037 |
+
disabled: true
|
2038 |
+
|
2039 |
+
- name: livespace
|
2040 |
+
engine: livespace
|
2041 |
+
shortcut: ls
|
2042 |
+
categories: videos
|
2043 |
+
disabled: true
|
2044 |
+
timeout: 5.0
|
2045 |
+
|
2046 |
+
- name: wordnik
|
2047 |
+
engine: wordnik
|
2048 |
+
shortcut: def
|
2049 |
+
base_url: https://www.wordnik.com/
|
2050 |
+
categories: [dictionaries]
|
2051 |
+
timeout: 5.0
|
2052 |
+
|
2053 |
+
- name: woxikon.de synonyme
|
2054 |
+
engine: xpath
|
2055 |
+
shortcut: woxi
|
2056 |
+
categories: [dictionaries]
|
2057 |
+
timeout: 5.0
|
2058 |
+
disabled: true
|
2059 |
+
search_url: https://synonyme.woxikon.de/synonyme/{query}.php
|
2060 |
+
url_xpath: //div[@class="upper-synonyms"]/a/@href
|
2061 |
+
content_xpath: //div[@class="synonyms-list-group"]
|
2062 |
+
title_xpath: //div[@class="upper-synonyms"]/a
|
2063 |
+
no_result_for_http_status: [404]
|
2064 |
+
about:
|
2065 |
+
website: https://www.woxikon.de/
|
2066 |
+
wikidata_id: # No Wikidata ID
|
2067 |
+
use_official_api: false
|
2068 |
+
require_api_key: false
|
2069 |
+
results: HTML
|
2070 |
+
language: de
|
2071 |
+
|
2072 |
+
- name: seekr news
|
2073 |
+
engine: seekr
|
2074 |
+
shortcut: senews
|
2075 |
+
categories: news
|
2076 |
+
seekr_category: news
|
2077 |
+
disabled: true
|
2078 |
+
|
2079 |
+
- name: seekr images
|
2080 |
+
engine: seekr
|
2081 |
+
network: seekr news
|
2082 |
+
shortcut: seimg
|
2083 |
+
categories: images
|
2084 |
+
seekr_category: images
|
2085 |
+
disabled: true
|
2086 |
+
|
2087 |
+
- name: seekr videos
|
2088 |
+
engine: seekr
|
2089 |
+
network: seekr news
|
2090 |
+
shortcut: sevid
|
2091 |
+
categories: videos
|
2092 |
+
seekr_category: videos
|
2093 |
+
disabled: true
|
2094 |
+
|
2095 |
+
- name: sjp.pwn
|
2096 |
+
engine: sjp
|
2097 |
+
shortcut: sjp
|
2098 |
+
base_url: https://sjp.pwn.pl/
|
2099 |
+
timeout: 5.0
|
2100 |
+
disabled: true
|
2101 |
+
|
2102 |
+
- name: stract
|
2103 |
+
engine: stract
|
2104 |
+
shortcut: str
|
2105 |
+
disabled: true
|
2106 |
+
|
2107 |
+
- name: svgrepo
|
2108 |
+
engine: svgrepo
|
2109 |
+
shortcut: svg
|
2110 |
+
timeout: 10.0
|
2111 |
+
disabled: true
|
2112 |
+
|
2113 |
+
- name: tootfinder
|
2114 |
+
engine: tootfinder
|
2115 |
+
shortcut: toot
|
2116 |
+
|
2117 |
+
- name: wallhaven
|
2118 |
+
engine: wallhaven
|
2119 |
+
# api_key: abcdefghijklmnopqrstuvwxyz
|
2120 |
+
shortcut: wh
|
2121 |
+
|
2122 |
+
# wikimini: online encyclopedia for children
|
2123 |
+
# The fulltext and title parameter is necessary for Wikimini because
|
2124 |
+
# sometimes it will not show the results and redirect instead
|
2125 |
+
- name: wikimini
|
2126 |
+
engine: xpath
|
2127 |
+
shortcut: wkmn
|
2128 |
+
search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
|
2129 |
+
url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
|
2130 |
+
title_xpath: //li//div[@class="mw-search-result-heading"]/a
|
2131 |
+
content_xpath: //li/div[@class="searchresult"]
|
2132 |
+
categories: general
|
2133 |
+
disabled: true
|
2134 |
+
about:
|
2135 |
+
website: https://wikimini.org/
|
2136 |
+
wikidata_id: Q3568032
|
2137 |
+
use_official_api: false
|
2138 |
+
require_api_key: false
|
2139 |
+
results: HTML
|
2140 |
+
language: fr
|
2141 |
+
|
2142 |
+
- name: wttr.in
|
2143 |
+
engine: wttr
|
2144 |
+
shortcut: wttr
|
2145 |
+
timeout: 9.0
|
2146 |
+
|
2147 |
+
- name: yummly
|
2148 |
+
engine: yummly
|
2149 |
+
shortcut: yum
|
2150 |
+
disabled: true
|
2151 |
+
|
2152 |
+
- name: brave
|
2153 |
+
engine: brave
|
2154 |
+
shortcut: br
|
2155 |
+
time_range_support: true
|
2156 |
+
paging: true
|
2157 |
+
categories: [general, web]
|
2158 |
+
brave_category: search
|
2159 |
+
# brave_spellcheck: true
|
2160 |
+
|
2161 |
+
- name: brave.images
|
2162 |
+
engine: brave
|
2163 |
+
network: brave
|
2164 |
+
shortcut: brimg
|
2165 |
+
categories: [images, web]
|
2166 |
+
brave_category: images
|
2167 |
+
|
2168 |
+
- name: brave.videos
|
2169 |
+
engine: brave
|
2170 |
+
network: brave
|
2171 |
+
shortcut: brvid
|
2172 |
+
categories: [videos, web]
|
2173 |
+
brave_category: videos
|
2174 |
+
|
2175 |
+
- name: brave.news
|
2176 |
+
engine: brave
|
2177 |
+
network: brave
|
2178 |
+
shortcut: brnews
|
2179 |
+
categories: news
|
2180 |
+
brave_category: news
|
2181 |
+
|
2182 |
+
# - name: brave.goggles
|
2183 |
+
# engine: brave
|
2184 |
+
# network: brave
|
2185 |
+
# shortcut: brgog
|
2186 |
+
# time_range_support: true
|
2187 |
+
# paging: true
|
2188 |
+
# categories: [general, web]
|
2189 |
+
# brave_category: goggles
|
2190 |
+
# Goggles: # required! This should be a URL ending in .goggle
|
2191 |
+
|
2192 |
+
- name: lib.rs
|
2193 |
+
shortcut: lrs
|
2194 |
+
engine: xpath
|
2195 |
+
search_url: https://lib.rs/search?q={query}
|
2196 |
+
results_xpath: /html/body/main/div/ol/li/a
|
2197 |
+
url_xpath: ./@href
|
2198 |
+
title_xpath: ./div[@class="h"]/h4
|
2199 |
+
content_xpath: ./div[@class="h"]/p
|
2200 |
+
categories: [it, packages]
|
2201 |
+
disabled: true
|
2202 |
+
about:
|
2203 |
+
website: https://lib.rs
|
2204 |
+
wikidata_id: Q113486010
|
2205 |
+
use_official_api: false
|
2206 |
+
require_api_key: false
|
2207 |
+
results: HTML
|
2208 |
+
|
2209 |
+
- name: sourcehut
|
2210 |
+
shortcut: srht
|
2211 |
+
engine: xpath
|
2212 |
+
paging: true
|
2213 |
+
search_url: https://sr.ht/projects?page={pageno}&search={query}
|
2214 |
+
results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
|
2215 |
+
url_xpath: ./h4/a[2]/@href
|
2216 |
+
title_xpath: ./h4/a[2]
|
2217 |
+
content_xpath: ./p
|
2218 |
+
first_page_num: 1
|
2219 |
+
categories: [it, repos]
|
2220 |
+
disabled: true
|
2221 |
+
about:
|
2222 |
+
website: https://sr.ht
|
2223 |
+
wikidata_id: Q78514485
|
2224 |
+
official_api_documentation: https://man.sr.ht/
|
2225 |
+
use_official_api: false
|
2226 |
+
require_api_key: false
|
2227 |
+
results: HTML
|
2228 |
+
|
2229 |
+
- name: goo
|
2230 |
+
shortcut: goo
|
2231 |
+
engine: xpath
|
2232 |
+
paging: true
|
2233 |
+
search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
|
2234 |
+
url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
|
2235 |
+
title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
|
2236 |
+
content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
|
2237 |
+
first_page_num: 0
|
2238 |
+
categories: [general, web]
|
2239 |
+
disabled: true
|
2240 |
+
timeout: 4.0
|
2241 |
+
about:
|
2242 |
+
website: https://search.goo.ne.jp
|
2243 |
+
wikidata_id: Q249044
|
2244 |
+
use_official_api: false
|
2245 |
+
require_api_key: false
|
2246 |
+
results: HTML
|
2247 |
+
language: ja
|
2248 |
+
|
2249 |
+
- name: bt4g
|
2250 |
+
engine: bt4g
|
2251 |
+
shortcut: bt4g
|
2252 |
+
|
2253 |
+
- name: pkg.go.dev
|
2254 |
+
engine: xpath
|
2255 |
+
shortcut: pgo
|
2256 |
+
search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
|
2257 |
+
results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
|
2258 |
+
url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
|
2259 |
+
title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
|
2260 |
+
content_xpath: ./p[@class="SearchSnippet-synopsis"]
|
2261 |
+
categories: [packages, it]
|
2262 |
+
timeout: 3.0
|
2263 |
+
disabled: true
|
2264 |
+
about:
|
2265 |
+
website: https://pkg.go.dev/
|
2266 |
+
use_official_api: false
|
2267 |
+
require_api_key: false
|
2268 |
+
results: HTML
|
2269 |
+
|
2270 |
+
# Doku engine lets you access to any Doku wiki instance:
|
2271 |
+
# A public one or a privete/corporate one.
|
2272 |
+
# - name: ubuntuwiki
|
2273 |
+
# engine: doku
|
2274 |
+
# shortcut: uw
|
2275 |
+
# base_url: 'https://doc.ubuntu-fr.org'
|
2276 |
+
|
2277 |
+
# Be careful when enabling this engine if you are
|
2278 |
+
# running a public instance. Do not expose any sensitive
|
2279 |
+
# information. You can restrict access by configuring a list
|
2280 |
+
# of access tokens under tokens.
|
2281 |
+
# - name: git grep
|
2282 |
+
# engine: command
|
2283 |
+
# command: ['git', 'grep', '{{QUERY}}']
|
2284 |
+
# shortcut: gg
|
2285 |
+
# tokens: []
|
2286 |
+
# disabled: true
|
2287 |
+
# delimiter:
|
2288 |
+
# chars: ':'
|
2289 |
+
# keys: ['filepath', 'code']
|
2290 |
+
|
2291 |
+
# Be careful when enabling this engine if you are
|
2292 |
+
# running a public instance. Do not expose any sensitive
|
2293 |
+
# information. You can restrict access by configuring a list
|
2294 |
+
# of access tokens under tokens.
|
2295 |
+
# - name: locate
|
2296 |
+
# engine: command
|
2297 |
+
# command: ['locate', '{{QUERY}}']
|
2298 |
+
# shortcut: loc
|
2299 |
+
# tokens: []
|
2300 |
+
# disabled: true
|
2301 |
+
# delimiter:
|
2302 |
+
# chars: ' '
|
2303 |
+
# keys: ['line']
|
2304 |
+
|
2305 |
+
# Be careful when enabling this engine if you are
|
2306 |
+
# running a public instance. Do not expose any sensitive
|
2307 |
+
# information. You can restrict access by configuring a list
|
2308 |
+
# of access tokens under tokens.
|
2309 |
+
# - name: find
|
2310 |
+
# engine: command
|
2311 |
+
# command: ['find', '.', '-name', '{{QUERY}}']
|
2312 |
+
# query_type: path
|
2313 |
+
# shortcut: fnd
|
2314 |
+
# tokens: []
|
2315 |
+
# disabled: true
|
2316 |
+
# delimiter:
|
2317 |
+
# chars: ' '
|
2318 |
+
# keys: ['line']
|
2319 |
+
|
2320 |
+
# Be careful when enabling this engine if you are
|
2321 |
+
# running a public instance. Do not expose any sensitive
|
2322 |
+
# information. You can restrict access by configuring a list
|
2323 |
+
# of access tokens under tokens.
|
2324 |
+
# - name: pattern search in files
|
2325 |
+
# engine: command
|
2326 |
+
# command: ['fgrep', '{{QUERY}}']
|
2327 |
+
# shortcut: fgr
|
2328 |
+
# tokens: []
|
2329 |
+
# disabled: true
|
2330 |
+
# delimiter:
|
2331 |
+
# chars: ' '
|
2332 |
+
# keys: ['line']
|
2333 |
+
|
2334 |
+
# Be careful when enabling this engine if you are
|
2335 |
+
# running a public instance. Do not expose any sensitive
|
2336 |
+
# information. You can restrict access by configuring a list
|
2337 |
+
# of access tokens under tokens.
|
2338 |
+
# - name: regex search in files
|
2339 |
+
# engine: command
|
2340 |
+
# command: ['grep', '{{QUERY}}']
|
2341 |
+
# shortcut: gr
|
2342 |
+
# tokens: []
|
2343 |
+
# disabled: true
|
2344 |
+
# delimiter:
|
2345 |
+
# chars: ' '
|
2346 |
+
# keys: ['line']
|
2347 |
+
|
2348 |
+
doi_resolvers:
|
2349 |
+
oadoi.org: 'https://oadoi.org/'
|
2350 |
+
doi.org: 'https://doi.org/'
|
2351 |
+
doai.io: 'https://dissem.in/'
|
2352 |
+
sci-hub.se: 'https://sci-hub.se/'
|
2353 |
+
sci-hub.st: 'https://sci-hub.st/'
|
2354 |
+
sci-hub.ru: 'https://sci-hub.ru/'
|
2355 |
+
|
2356 |
+
default_doi_resolver: 'oadoi.org'
|
searxng.dockerfile
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
FROM searxng/searxng
|
2 |
+
|
3 |
+
COPY searxng-settings.yml /etc/searxng/settings.yml
|
tsconfig.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"lib": ["ESNext"],
|
4 |
+
"module": "commonjs",
|
5 |
+
"target": "ESNext",
|
6 |
+
"outDir": "dist",
|
7 |
+
"sourceMap": false,
|
8 |
+
"esModuleInterop": true,
|
9 |
+
"experimentalDecorators": true,
|
10 |
+
"emitDecoratorMetadata": true,
|
11 |
+
"allowSyntheticDefaultImports": true,
|
12 |
+
"skipLibCheck": true,
|
13 |
+
"skipDefaultLibCheck": true
|
14 |
+
},
|
15 |
+
"include": ["src"],
|
16 |
+
"exclude": ["node_modules", "**/*.spec.ts"]
|
17 |
+
}
|
yarn.lock
ADDED
@@ -0,0 +1,1629 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
2 |
+
# yarn lockfile v1
|
3 |
+
|
4 |
+
|
5 |
+
"@anthropic-ai/sdk@^0.9.1":
|
6 |
+
version "0.9.1"
|
7 |
+
resolved "https://registry.yarnpkg.com/@anthropic-ai/sdk/-/sdk-0.9.1.tgz#b2d2b7bf05c90dce502c9a2e869066870f69ba88"
|
8 |
+
integrity sha512-wa1meQ2WSfoY8Uor3EdrJq0jTiZJoKoSii2ZVWRY1oN4Tlr5s59pADg9T79FTbPe1/se5c3pBeZgJL63wmuoBA==
|
9 |
+
dependencies:
|
10 |
+
"@types/node" "^18.11.18"
|
11 |
+
"@types/node-fetch" "^2.6.4"
|
12 |
+
abort-controller "^3.0.0"
|
13 |
+
agentkeepalive "^4.2.1"
|
14 |
+
digest-fetch "^1.3.0"
|
15 |
+
form-data-encoder "1.7.2"
|
16 |
+
formdata-node "^4.3.2"
|
17 |
+
node-fetch "^2.6.7"
|
18 |
+
web-streams-polyfill "^3.2.1"
|
19 |
+
|
20 |
+
"@colors/[email protected]", "@colors/colors@^1.6.0":
|
21 |
+
version "1.6.0"
|
22 |
+
resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.6.0.tgz#ec6cd237440700bc23ca23087f513c75508958b0"
|
23 |
+
integrity sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==
|
24 |
+
|
25 |
+
"@cspotcode/source-map-support@^0.8.0":
|
26 |
+
version "0.8.1"
|
27 |
+
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
|
28 |
+
integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==
|
29 |
+
dependencies:
|
30 |
+
"@jridgewell/trace-mapping" "0.3.9"
|
31 |
+
|
32 |
+
"@dabh/diagnostics@^2.0.2":
|
33 |
+
version "2.0.3"
|
34 |
+
resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.3.tgz#7f7e97ee9a725dffc7808d93668cc984e1dc477a"
|
35 |
+
integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==
|
36 |
+
dependencies:
|
37 |
+
colorspace "1.1.x"
|
38 |
+
enabled "2.0.x"
|
39 |
+
kuler "^2.0.0"
|
40 |
+
|
41 |
+
"@iarna/toml@^2.2.5":
|
42 |
+
version "2.2.5"
|
43 |
+
resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c"
|
44 |
+
integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==
|
45 |
+
|
46 |
+
"@jridgewell/resolve-uri@^3.0.3":
|
47 |
+
version "3.1.2"
|
48 |
+
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
|
49 |
+
integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
|
50 |
+
|
51 |
+
"@jridgewell/sourcemap-codec@^1.4.10":
|
52 |
+
version "1.4.15"
|
53 |
+
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
|
54 |
+
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
|
55 |
+
|
56 |
+
"@jridgewell/[email protected]":
|
57 |
+
version "0.3.9"
|
58 |
+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
|
59 |
+
integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
|
60 |
+
dependencies:
|
61 |
+
"@jridgewell/resolve-uri" "^3.0.3"
|
62 |
+
"@jridgewell/sourcemap-codec" "^1.4.10"
|
63 |
+
|
64 |
+
"@langchain/community@~0.0.41":
|
65 |
+
version "0.0.43"
|
66 |
+
resolved "https://registry.yarnpkg.com/@langchain/community/-/community-0.0.43.tgz#017e2f9b3209b3999482f10df5aec2520731a63c"
|
67 |
+
integrity sha512-60TjV3knGGOPHfbJxLpuwARr8oA0r6Txm8wTFvFx+TjRUrloyBUcWSbJIdm62gAwBJDEHmdjjyWOOzU+eewcuA==
|
68 |
+
dependencies:
|
69 |
+
"@langchain/core" "~0.1.44"
|
70 |
+
"@langchain/openai" "~0.0.19"
|
71 |
+
expr-eval "^2.0.2"
|
72 |
+
flat "^5.0.2"
|
73 |
+
langsmith "~0.1.1"
|
74 |
+
uuid "^9.0.0"
|
75 |
+
zod "^3.22.3"
|
76 |
+
|
77 |
+
"@langchain/core@~0.1.44", "@langchain/core@~0.1.45":
|
78 |
+
version "0.1.52"
|
79 |
+
resolved "https://registry.yarnpkg.com/@langchain/core/-/core-0.1.52.tgz#7619310b83ffa841628efe2e1eda873ca714d068"
|
80 |
+
integrity sha512-AEyP99r7jijF33pyzaWtqCkiO9crotgethqq7jznAGlIojMCL9BT/id2DjVyN32SGFTpet273kkjsmEdFSHqpA==
|
81 |
+
dependencies:
|
82 |
+
ansi-styles "^5.0.0"
|
83 |
+
camelcase "6"
|
84 |
+
decamelize "1.2.0"
|
85 |
+
js-tiktoken "^1.0.8"
|
86 |
+
langsmith "~0.1.7"
|
87 |
+
ml-distance "^4.0.0"
|
88 |
+
p-queue "^6.6.2"
|
89 |
+
p-retry "4"
|
90 |
+
uuid "^9.0.0"
|
91 |
+
zod "^3.22.4"
|
92 |
+
zod-to-json-schema "^3.22.3"
|
93 |
+
|
94 |
+
"@langchain/openai@^0.0.25", "@langchain/openai@~0.0.19":
|
95 |
+
version "0.0.25"
|
96 |
+
resolved "https://registry.yarnpkg.com/@langchain/openai/-/openai-0.0.25.tgz#8332abea1e3acb9b1169f90636e518c0ee90622e"
|
97 |
+
integrity sha512-cD9xPDDXK2Cjs6yYg27BpdzBnQZvBb1yaNgMoGLWIT27UQVRyT96PLC1OVMQOmMmHaKDBCj/1bW4GQQgX7+d2Q==
|
98 |
+
dependencies:
|
99 |
+
"@langchain/core" "~0.1.45"
|
100 |
+
js-tiktoken "^1.0.7"
|
101 |
+
openai "^4.26.0"
|
102 |
+
zod "^3.22.4"
|
103 |
+
zod-to-json-schema "^3.22.3"
|
104 |
+
|
105 |
+
"@tsconfig/node10@^1.0.7":
|
106 |
+
version "1.0.11"
|
107 |
+
resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2"
|
108 |
+
integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==
|
109 |
+
|
110 |
+
"@tsconfig/node12@^1.0.7":
|
111 |
+
version "1.0.11"
|
112 |
+
resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d"
|
113 |
+
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==
|
114 |
+
|
115 |
+
"@tsconfig/node14@^1.0.0":
|
116 |
+
version "1.0.3"
|
117 |
+
resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1"
|
118 |
+
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==
|
119 |
+
|
120 |
+
"@tsconfig/node16@^1.0.2":
|
121 |
+
version "1.0.4"
|
122 |
+
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9"
|
123 |
+
integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==
|
124 |
+
|
125 |
+
"@types/body-parser@*":
|
126 |
+
version "1.19.5"
|
127 |
+
resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4"
|
128 |
+
integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==
|
129 |
+
dependencies:
|
130 |
+
"@types/connect" "*"
|
131 |
+
"@types/node" "*"
|
132 |
+
|
133 |
+
"@types/connect@*":
|
134 |
+
version "3.4.38"
|
135 |
+
resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858"
|
136 |
+
integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==
|
137 |
+
dependencies:
|
138 |
+
"@types/node" "*"
|
139 |
+
|
140 |
+
"@types/cors@^2.8.17":
|
141 |
+
version "2.8.17"
|
142 |
+
resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.17.tgz#5d718a5e494a8166f569d986794e49c48b216b2b"
|
143 |
+
integrity sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==
|
144 |
+
dependencies:
|
145 |
+
"@types/node" "*"
|
146 |
+
|
147 |
+
"@types/express-serve-static-core@^4.17.33":
|
148 |
+
version "4.17.43"
|
149 |
+
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz#10d8444be560cb789c4735aea5eac6e5af45df54"
|
150 |
+
integrity sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==
|
151 |
+
dependencies:
|
152 |
+
"@types/node" "*"
|
153 |
+
"@types/qs" "*"
|
154 |
+
"@types/range-parser" "*"
|
155 |
+
"@types/send" "*"
|
156 |
+
|
157 |
+
"@types/express@^4.17.21":
|
158 |
+
version "4.17.21"
|
159 |
+
resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d"
|
160 |
+
integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==
|
161 |
+
dependencies:
|
162 |
+
"@types/body-parser" "*"
|
163 |
+
"@types/express-serve-static-core" "^4.17.33"
|
164 |
+
"@types/qs" "*"
|
165 |
+
"@types/serve-static" "*"
|
166 |
+
|
167 |
+
"@types/http-errors@*":
|
168 |
+
version "2.0.4"
|
169 |
+
resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f"
|
170 |
+
integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
|
171 |
+
|
172 |
+
"@types/mime@^1":
|
173 |
+
version "1.3.5"
|
174 |
+
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690"
|
175 |
+
integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
|
176 |
+
|
177 |
+
"@types/node-fetch@^2.6.4":
|
178 |
+
version "2.6.11"
|
179 |
+
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24"
|
180 |
+
integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==
|
181 |
+
dependencies:
|
182 |
+
"@types/node" "*"
|
183 |
+
form-data "^4.0.0"
|
184 |
+
|
185 |
+
"@types/node@*":
|
186 |
+
version "20.12.2"
|
187 |
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.2.tgz#9facdd11102f38b21b4ebedd9d7999663343d72e"
|
188 |
+
integrity sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==
|
189 |
+
dependencies:
|
190 |
+
undici-types "~5.26.4"
|
191 |
+
|
192 |
+
"@types/node@^18.11.18":
|
193 |
+
version "18.19.28"
|
194 |
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.28.tgz#c64a2c992c8ebbf61100a4570e4eebc1934ae030"
|
195 |
+
integrity sha512-J5cOGD9n4x3YGgVuaND6khm5x07MMdAKkRyXnjVR6KFhLMNh2yONGiP7Z+4+tBOt5mK+GvDTiacTOVGGpqiecw==
|
196 |
+
dependencies:
|
197 |
+
undici-types "~5.26.4"
|
198 |
+
|
199 |
+
"@types/qs@*":
|
200 |
+
version "6.9.14"
|
201 |
+
resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.14.tgz#169e142bfe493895287bee382af6039795e9b75b"
|
202 |
+
integrity sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==
|
203 |
+
|
204 |
+
"@types/range-parser@*":
|
205 |
+
version "1.2.7"
|
206 |
+
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
|
207 |
+
integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
|
208 |
+
|
209 |
+
"@types/readable-stream@^4.0.11":
|
210 |
+
version "4.0.11"
|
211 |
+
resolved "https://registry.yarnpkg.com/@types/readable-stream/-/readable-stream-4.0.11.tgz#684f1e947c90cb6a8ad3904523d650bb66cdbb84"
|
212 |
+
integrity sha512-R3eUMUTTKoIoaz7UpYLxvZCrOmCRPRbAmoDDHKcimTEySltaJhF8hLzj4+EzyDifiX5eK6oDQGSfmNnXjxZzYQ==
|
213 |
+
dependencies:
|
214 |
+
"@types/node" "*"
|
215 |
+
safe-buffer "~5.1.1"
|
216 |
+
|
217 |
+
"@types/[email protected]":
|
218 |
+
version "0.12.0"
|
219 |
+
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
|
220 |
+
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
|
221 |
+
|
222 |
+
"@types/send@*":
|
223 |
+
version "0.17.4"
|
224 |
+
resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a"
|
225 |
+
integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==
|
226 |
+
dependencies:
|
227 |
+
"@types/mime" "^1"
|
228 |
+
"@types/node" "*"
|
229 |
+
|
230 |
+
"@types/serve-static@*":
|
231 |
+
version "1.15.7"
|
232 |
+
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714"
|
233 |
+
integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==
|
234 |
+
dependencies:
|
235 |
+
"@types/http-errors" "*"
|
236 |
+
"@types/node" "*"
|
237 |
+
"@types/send" "*"
|
238 |
+
|
239 |
+
"@types/triple-beam@^1.3.2":
|
240 |
+
version "1.3.5"
|
241 |
+
resolved "https://registry.yarnpkg.com/@types/triple-beam/-/triple-beam-1.3.5.tgz#74fef9ffbaa198eb8b588be029f38b00299caa2c"
|
242 |
+
integrity sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==
|
243 |
+
|
244 |
+
"@types/uuid@^9.0.1":
|
245 |
+
version "9.0.8"
|
246 |
+
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba"
|
247 |
+
integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==
|
248 |
+
|
249 |
+
abbrev@1:
|
250 |
+
version "1.1.1"
|
251 |
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
252 |
+
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
253 |
+
|
254 |
+
abort-controller@^3.0.0:
|
255 |
+
version "3.0.0"
|
256 |
+
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
|
257 |
+
integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==
|
258 |
+
dependencies:
|
259 |
+
event-target-shim "^5.0.0"
|
260 |
+
|
261 |
+
accepts@~1.3.8:
|
262 |
+
version "1.3.8"
|
263 |
+
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
|
264 |
+
integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
|
265 |
+
dependencies:
|
266 |
+
mime-types "~2.1.34"
|
267 |
+
negotiator "0.6.3"
|
268 |
+
|
269 |
+
acorn-walk@^8.1.1:
|
270 |
+
version "8.3.2"
|
271 |
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa"
|
272 |
+
integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==
|
273 |
+
|
274 |
+
acorn@^8.4.1:
|
275 |
+
version "8.11.3"
|
276 |
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a"
|
277 |
+
integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
|
278 |
+
|
279 |
+
agentkeepalive@^4.2.1:
|
280 |
+
version "4.5.0"
|
281 |
+
resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923"
|
282 |
+
integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==
|
283 |
+
dependencies:
|
284 |
+
humanize-ms "^1.2.1"
|
285 |
+
|
286 |
+
ansi-styles@^5.0.0:
|
287 |
+
version "5.2.0"
|
288 |
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
|
289 |
+
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
|
290 |
+
|
291 |
+
anymatch@~3.1.2:
|
292 |
+
version "3.1.3"
|
293 |
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
|
294 |
+
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
|
295 |
+
dependencies:
|
296 |
+
normalize-path "^3.0.0"
|
297 |
+
picomatch "^2.0.4"
|
298 |
+
|
299 |
+
arg@^4.1.0:
|
300 |
+
version "4.1.3"
|
301 |
+
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
|
302 |
+
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
|
303 |
+
|
304 |
+
argparse@^2.0.1:
|
305 |
+
version "2.0.1"
|
306 |
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
307 |
+
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
308 |
+
|
309 | |
310 |
+
version "1.1.1"
|
311 |
+
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
|
312 |
+
integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
|
313 |
+
|
314 |
+
async@^3.2.3:
|
315 |
+
version "3.2.5"
|
316 |
+
resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66"
|
317 |
+
integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==
|
318 |
+
|
319 |
+
asynckit@^0.4.0:
|
320 |
+
version "0.4.0"
|
321 |
+
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
322 |
+
integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
|
323 |
+
|
324 |
+
axios@^1.6.8:
|
325 |
+
version "1.6.8"
|
326 |
+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.8.tgz#66d294951f5d988a00e87a0ffb955316a619ea66"
|
327 |
+
integrity sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==
|
328 |
+
dependencies:
|
329 |
+
follow-redirects "^1.15.6"
|
330 |
+
form-data "^4.0.0"
|
331 |
+
proxy-from-env "^1.1.0"
|
332 |
+
|
333 |
+
balanced-match@^1.0.0:
|
334 |
+
version "1.0.2"
|
335 |
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
336 |
+
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
337 |
+
|
338 |
+
base-64@^0.1.0:
|
339 |
+
version "0.1.0"
|
340 |
+
resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb"
|
341 |
+
integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==
|
342 |
+
|
343 |
+
base64-js@^1.5.1:
|
344 |
+
version "1.5.1"
|
345 |
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
|
346 |
+
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
|
347 |
+
|
348 |
+
binary-extensions@^2.0.0, binary-extensions@^2.2.0:
|
349 |
+
version "2.3.0"
|
350 |
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
|
351 |
+
integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
|
352 |
+
|
353 |
+
binary-search@^1.3.5:
|
354 |
+
version "1.3.6"
|
355 |
+
resolved "https://registry.yarnpkg.com/binary-search/-/binary-search-1.3.6.tgz#e32426016a0c5092f0f3598836a1c7da3560565c"
|
356 |
+
integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==
|
357 |
+
|
358 | |
359 |
+
version "1.20.2"
|
360 |
+
resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd"
|
361 |
+
integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
|
362 |
+
dependencies:
|
363 |
+
bytes "3.1.2"
|
364 |
+
content-type "~1.0.5"
|
365 |
+
debug "2.6.9"
|
366 |
+
depd "2.0.0"
|
367 |
+
destroy "1.2.0"
|
368 |
+
http-errors "2.0.0"
|
369 |
+
iconv-lite "0.4.24"
|
370 |
+
on-finished "2.4.1"
|
371 |
+
qs "6.11.0"
|
372 |
+
raw-body "2.5.2"
|
373 |
+
type-is "~1.6.18"
|
374 |
+
unpipe "1.0.0"
|
375 |
+
|
376 |
+
brace-expansion@^1.1.7:
|
377 |
+
version "1.1.11"
|
378 |
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
379 |
+
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
|
380 |
+
dependencies:
|
381 |
+
balanced-match "^1.0.0"
|
382 |
+
concat-map "0.0.1"
|
383 |
+
|
384 |
+
braces@~3.0.2:
|
385 |
+
version "3.0.2"
|
386 |
+
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
387 |
+
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
388 |
+
dependencies:
|
389 |
+
fill-range "^7.0.1"
|
390 |
+
|
391 | |
392 |
+
version "3.1.2"
|
393 |
+
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
|
394 |
+
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
|
395 |
+
|
396 |
+
call-bind@^1.0.7:
|
397 |
+
version "1.0.7"
|
398 |
+
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
|
399 |
+
integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
|
400 |
+
dependencies:
|
401 |
+
es-define-property "^1.0.0"
|
402 |
+
es-errors "^1.3.0"
|
403 |
+
function-bind "^1.1.2"
|
404 |
+
get-intrinsic "^1.2.4"
|
405 |
+
set-function-length "^1.2.1"
|
406 |
+
|
407 |
+
camelcase@6:
|
408 |
+
version "6.3.0"
|
409 |
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
|
410 |
+
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
|
411 |
+
|
412 | |
413 |
+
version "0.0.2"
|
414 |
+
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
|
415 |
+
integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==
|
416 |
+
|
417 |
+
chokidar@^3.5.2:
|
418 |
+
version "3.6.0"
|
419 |
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
|
420 |
+
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
|
421 |
+
dependencies:
|
422 |
+
anymatch "~3.1.2"
|
423 |
+
braces "~3.0.2"
|
424 |
+
glob-parent "~5.1.2"
|
425 |
+
is-binary-path "~2.1.0"
|
426 |
+
is-glob "~4.0.1"
|
427 |
+
normalize-path "~3.0.0"
|
428 |
+
readdirp "~3.6.0"
|
429 |
+
optionalDependencies:
|
430 |
+
fsevents "~2.3.2"
|
431 |
+
|
432 |
+
color-convert@^1.9.3:
|
433 |
+
version "1.9.3"
|
434 |
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
435 |
+
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
436 |
+
dependencies:
|
437 |
+
color-name "1.1.3"
|
438 |
+
|
439 | |
440 |
+
version "1.1.3"
|
441 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
442 |
+
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
|
443 |
+
|
444 |
+
color-name@^1.0.0:
|
445 |
+
version "1.1.4"
|
446 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
447 |
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
448 |
+
|
449 |
+
color-string@^1.6.0:
|
450 |
+
version "1.9.1"
|
451 |
+
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
|
452 |
+
integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
|
453 |
+
dependencies:
|
454 |
+
color-name "^1.0.0"
|
455 |
+
simple-swizzle "^0.2.2"
|
456 |
+
|
457 |
+
color@^3.1.3:
|
458 |
+
version "3.2.1"
|
459 |
+
resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164"
|
460 |
+
integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==
|
461 |
+
dependencies:
|
462 |
+
color-convert "^1.9.3"
|
463 |
+
color-string "^1.6.0"
|
464 |
+
|
465 | |
466 |
+
version "1.1.4"
|
467 |
+
resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.4.tgz#8d442d1186152f60453bf8070cd66eb364e59243"
|
468 |
+
integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==
|
469 |
+
dependencies:
|
470 |
+
color "^3.1.3"
|
471 |
+
text-hex "1.0.x"
|
472 |
+
|
473 |
+
combined-stream@^1.0.8:
|
474 |
+
version "1.0.8"
|
475 |
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
|
476 |
+
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
|
477 |
+
dependencies:
|
478 |
+
delayed-stream "~1.0.0"
|
479 |
+
|
480 |
+
commander@^10.0.1:
|
481 |
+
version "10.0.1"
|
482 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
|
483 |
+
integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
|
484 |
+
|
485 |
+
compute-cosine-similarity@^1.1.0:
|
486 |
+
version "1.1.0"
|
487 |
+
resolved "https://registry.yarnpkg.com/compute-cosine-similarity/-/compute-cosine-similarity-1.1.0.tgz#0086a06b0239deb90f231f0da894efdc48884609"
|
488 |
+
integrity sha512-FXhNx0ILLjGi9Z9+lglLzM12+0uoTnYkHm7GiadXDAr0HGVLm25OivUS1B/LPkbzzvlcXz/1EvWg9ZYyJSdhTw==
|
489 |
+
dependencies:
|
490 |
+
compute-dot "^1.1.0"
|
491 |
+
compute-l2norm "^1.1.0"
|
492 |
+
validate.io-array "^1.0.5"
|
493 |
+
validate.io-function "^1.0.2"
|
494 |
+
|
495 |
+
compute-dot@^1.1.0:
|
496 |
+
version "1.1.0"
|
497 |
+
resolved "https://registry.yarnpkg.com/compute-dot/-/compute-dot-1.1.0.tgz#01a5ba2c7af73b99002acb258459c9576a8232dc"
|
498 |
+
integrity sha512-L5Ocet4DdMrXboss13K59OK23GXjiSia7+7Ukc7q4Bl+RVpIXK2W9IHMbWDZkh+JUEvJAwOKRaJDiFUa1LTnJg==
|
499 |
+
dependencies:
|
500 |
+
validate.io-array "^1.0.3"
|
501 |
+
validate.io-function "^1.0.2"
|
502 |
+
|
503 |
+
compute-l2norm@^1.1.0:
|
504 |
+
version "1.1.0"
|
505 |
+
resolved "https://registry.yarnpkg.com/compute-l2norm/-/compute-l2norm-1.1.0.tgz#bd09131c6b36c8d70c68334e176009a4e0a989ac"
|
506 |
+
integrity sha512-6EHh1Elj90eU28SXi+h2PLnTQvZmkkHWySpoFz+WOlVNLz3DQoC4ISUHSV9n5jMxPHtKGJ01F4uu2PsXBB8sSg==
|
507 |
+
dependencies:
|
508 |
+
validate.io-array "^1.0.3"
|
509 |
+
validate.io-function "^1.0.2"
|
510 |
+
|
511 | |
512 |
+
version "0.0.1"
|
513 |
+
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
514 |
+
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
|
515 |
+
|
516 | |
517 |
+
version "0.5.4"
|
518 |
+
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
|
519 |
+
integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
|
520 |
+
dependencies:
|
521 |
+
safe-buffer "5.2.1"
|
522 |
+
|
523 |
+
content-type@~1.0.4, content-type@~1.0.5:
|
524 |
+
version "1.0.5"
|
525 |
+
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
|
526 |
+
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
|
527 |
+
|
528 | |
529 |
+
version "1.0.6"
|
530 |
+
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
|
531 |
+
integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
|
532 |
+
|
533 | |
534 |
+
version "0.6.0"
|
535 |
+
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051"
|
536 |
+
integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
|
537 |
+
|
538 |
+
cors@^2.8.5:
|
539 |
+
version "2.8.5"
|
540 |
+
resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
|
541 |
+
integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
|
542 |
+
dependencies:
|
543 |
+
object-assign "^4"
|
544 |
+
vary "^1"
|
545 |
+
|
546 |
+
create-require@^1.1.0:
|
547 |
+
version "1.1.1"
|
548 |
+
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
|
549 |
+
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
|
550 |
+
|
551 | |
552 |
+
version "0.0.2"
|
553 |
+
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
|
554 |
+
integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==
|
555 |
+
|
556 | |
557 |
+
version "2.6.9"
|
558 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
559 |
+
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
560 |
+
dependencies:
|
561 |
+
ms "2.0.0"
|
562 |
+
|
563 |
+
debug@^4:
|
564 |
+
version "4.3.4"
|
565 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
|
566 |
+
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
|
567 |
+
dependencies:
|
568 |
+
ms "2.1.2"
|
569 |
+
|
570 | |
571 |
+
version "1.2.0"
|
572 |
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
573 |
+
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
|
574 |
+
|
575 |
+
define-data-property@^1.1.4:
|
576 |
+
version "1.1.4"
|
577 |
+
resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
|
578 |
+
integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
|
579 |
+
dependencies:
|
580 |
+
es-define-property "^1.0.0"
|
581 |
+
es-errors "^1.3.0"
|
582 |
+
gopd "^1.0.1"
|
583 |
+
|
584 |
+
delayed-stream@~1.0.0:
|
585 |
+
version "1.0.0"
|
586 |
+
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
587 |
+
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
|
588 |
+
|
589 | |
590 |
+
version "2.0.0"
|
591 |
+
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
|
592 |
+
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
|
593 |
+
|
594 | |
595 |
+
version "1.2.0"
|
596 |
+
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
|
597 |
+
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
|
598 |
+
|
599 |
+
diff@^4.0.1:
|
600 |
+
version "4.0.2"
|
601 |
+
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
|
602 |
+
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
603 |
+
|
604 |
+
digest-fetch@^1.3.0:
|
605 |
+
version "1.3.0"
|
606 |
+
resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661"
|
607 |
+
integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==
|
608 |
+
dependencies:
|
609 |
+
base-64 "^0.1.0"
|
610 |
+
md5 "^2.3.0"
|
611 |
+
|
612 |
+
dotenv@^16.4.5:
|
613 |
+
version "16.4.5"
|
614 |
+
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
|
615 |
+
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
|
616 |
+
|
617 | |
618 |
+
version "1.1.1"
|
619 |
+
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
620 |
+
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
|
621 |
+
|
622 | |
623 |
+
version "2.0.0"
|
624 |
+
resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2"
|
625 |
+
integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==
|
626 |
+
|
627 |
+
encodeurl@~1.0.2:
|
628 |
+
version "1.0.2"
|
629 |
+
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
630 |
+
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
|
631 |
+
|
632 |
+
es-define-property@^1.0.0:
|
633 |
+
version "1.0.0"
|
634 |
+
resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845"
|
635 |
+
integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
|
636 |
+
dependencies:
|
637 |
+
get-intrinsic "^1.2.4"
|
638 |
+
|
639 |
+
es-errors@^1.3.0:
|
640 |
+
version "1.3.0"
|
641 |
+
resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
|
642 |
+
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
|
643 |
+
|
644 |
+
escape-html@~1.0.3:
|
645 |
+
version "1.0.3"
|
646 |
+
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
647 |
+
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
|
648 |
+
|
649 |
+
etag@~1.8.1:
|
650 |
+
version "1.8.1"
|
651 |
+
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
|
652 |
+
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
|
653 |
+
|
654 |
+
event-target-shim@^5.0.0:
|
655 |
+
version "5.0.1"
|
656 |
+
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
|
657 |
+
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
|
658 |
+
|
659 |
+
eventemitter3@^4.0.4:
|
660 |
+
version "4.0.7"
|
661 |
+
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
|
662 |
+
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
|
663 |
+
|
664 |
+
expr-eval@^2.0.2:
|
665 |
+
version "2.0.2"
|
666 |
+
resolved "https://registry.yarnpkg.com/expr-eval/-/expr-eval-2.0.2.tgz#fa6f044a7b0c93fde830954eb9c5b0f7fbc7e201"
|
667 |
+
integrity sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==
|
668 |
+
|
669 |
+
express@^4.19.2:
|
670 |
+
version "4.19.2"
|
671 |
+
resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465"
|
672 |
+
integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==
|
673 |
+
dependencies:
|
674 |
+
accepts "~1.3.8"
|
675 |
+
array-flatten "1.1.1"
|
676 |
+
body-parser "1.20.2"
|
677 |
+
content-disposition "0.5.4"
|
678 |
+
content-type "~1.0.4"
|
679 |
+
cookie "0.6.0"
|
680 |
+
cookie-signature "1.0.6"
|
681 |
+
debug "2.6.9"
|
682 |
+
depd "2.0.0"
|
683 |
+
encodeurl "~1.0.2"
|
684 |
+
escape-html "~1.0.3"
|
685 |
+
etag "~1.8.1"
|
686 |
+
finalhandler "1.2.0"
|
687 |
+
fresh "0.5.2"
|
688 |
+
http-errors "2.0.0"
|
689 |
+
merge-descriptors "1.0.1"
|
690 |
+
methods "~1.1.2"
|
691 |
+
on-finished "2.4.1"
|
692 |
+
parseurl "~1.3.3"
|
693 |
+
path-to-regexp "0.1.7"
|
694 |
+
proxy-addr "~2.0.7"
|
695 |
+
qs "6.11.0"
|
696 |
+
range-parser "~1.2.1"
|
697 |
+
safe-buffer "5.2.1"
|
698 |
+
send "0.18.0"
|
699 |
+
serve-static "1.15.0"
|
700 |
+
setprototypeof "1.2.0"
|
701 |
+
statuses "2.0.1"
|
702 |
+
type-is "~1.6.18"
|
703 |
+
utils-merge "1.0.1"
|
704 |
+
vary "~1.1.2"
|
705 |
+
|
706 |
+
fecha@^4.2.0:
|
707 |
+
version "4.2.3"
|
708 |
+
resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd"
|
709 |
+
integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==
|
710 |
+
|
711 |
+
fill-range@^7.0.1:
|
712 |
+
version "7.0.1"
|
713 |
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
714 |
+
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
715 |
+
dependencies:
|
716 |
+
to-regex-range "^5.0.1"
|
717 |
+
|
718 | |
719 |
+
version "1.2.0"
|
720 |
+
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32"
|
721 |
+
integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==
|
722 |
+
dependencies:
|
723 |
+
debug "2.6.9"
|
724 |
+
encodeurl "~1.0.2"
|
725 |
+
escape-html "~1.0.3"
|
726 |
+
on-finished "2.4.1"
|
727 |
+
parseurl "~1.3.3"
|
728 |
+
statuses "2.0.1"
|
729 |
+
unpipe "~1.0.0"
|
730 |
+
|
731 |
+
flat@^5.0.2:
|
732 |
+
version "5.0.2"
|
733 |
+
resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
|
734 |
+
integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
|
735 |
+
|
736 | |
737 |
+
version "1.1.0"
|
738 |
+
resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc"
|
739 |
+
integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==
|
740 |
+
|
741 |
+
follow-redirects@^1.15.6:
|
742 |
+
version "1.15.6"
|
743 |
+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b"
|
744 |
+
integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==
|
745 |
+
|
746 | |
747 |
+
version "1.7.2"
|
748 |
+
resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040"
|
749 |
+
integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==
|
750 |
+
|
751 |
+
form-data@^4.0.0:
|
752 |
+
version "4.0.0"
|
753 |
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
|
754 |
+
integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
|
755 |
+
dependencies:
|
756 |
+
asynckit "^0.4.0"
|
757 |
+
combined-stream "^1.0.8"
|
758 |
+
mime-types "^2.1.12"
|
759 |
+
|
760 |
+
formdata-node@^4.3.2:
|
761 |
+
version "4.4.1"
|
762 |
+
resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2"
|
763 |
+
integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==
|
764 |
+
dependencies:
|
765 |
+
node-domexception "1.0.0"
|
766 |
+
web-streams-polyfill "4.0.0-beta.3"
|
767 |
+
|
768 | |
769 |
+
version "0.2.0"
|
770 |
+
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
|
771 |
+
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
|
772 |
+
|
773 | |
774 |
+
version "0.5.2"
|
775 |
+
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
|
776 |
+
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
|
777 |
+
|
778 |
+
fsevents@~2.3.2:
|
779 |
+
version "2.3.3"
|
780 |
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
|
781 |
+
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
|
782 |
+
|
783 |
+
function-bind@^1.1.2:
|
784 |
+
version "1.1.2"
|
785 |
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
|
786 |
+
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
|
787 |
+
|
788 |
+
get-intrinsic@^1.1.3, get-intrinsic@^1.2.4:
|
789 |
+
version "1.2.4"
|
790 |
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd"
|
791 |
+
integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
|
792 |
+
dependencies:
|
793 |
+
es-errors "^1.3.0"
|
794 |
+
function-bind "^1.1.2"
|
795 |
+
has-proto "^1.0.1"
|
796 |
+
has-symbols "^1.0.3"
|
797 |
+
hasown "^2.0.0"
|
798 |
+
|
799 |
+
glob-parent@~5.1.2:
|
800 |
+
version "5.1.2"
|
801 |
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
802 |
+
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
803 |
+
dependencies:
|
804 |
+
is-glob "^4.0.1"
|
805 |
+
|
806 |
+
gopd@^1.0.1:
|
807 |
+
version "1.0.1"
|
808 |
+
resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
|
809 |
+
integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
|
810 |
+
dependencies:
|
811 |
+
get-intrinsic "^1.1.3"
|
812 |
+
|
813 |
+
has-flag@^3.0.0:
|
814 |
+
version "3.0.0"
|
815 |
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
816 |
+
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
|
817 |
+
|
818 |
+
has-property-descriptors@^1.0.2:
|
819 |
+
version "1.0.2"
|
820 |
+
resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
|
821 |
+
integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
|
822 |
+
dependencies:
|
823 |
+
es-define-property "^1.0.0"
|
824 |
+
|
825 |
+
has-proto@^1.0.1:
|
826 |
+
version "1.0.3"
|
827 |
+
resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd"
|
828 |
+
integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==
|
829 |
+
|
830 |
+
has-symbols@^1.0.3:
|
831 |
+
version "1.0.3"
|
832 |
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
|
833 |
+
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
|
834 |
+
|
835 |
+
hasown@^2.0.0:
|
836 |
+
version "2.0.2"
|
837 |
+
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
|
838 |
+
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
|
839 |
+
dependencies:
|
840 |
+
function-bind "^1.1.2"
|
841 |
+
|
842 | |
843 |
+
version "2.0.0"
|
844 |
+
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
|
845 |
+
integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
|
846 |
+
dependencies:
|
847 |
+
depd "2.0.0"
|
848 |
+
inherits "2.0.4"
|
849 |
+
setprototypeof "1.2.0"
|
850 |
+
statuses "2.0.1"
|
851 |
+
toidentifier "1.0.1"
|
852 |
+
|
853 |
+
humanize-ms@^1.2.1:
|
854 |
+
version "1.2.1"
|
855 |
+
resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
|
856 |
+
integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==
|
857 |
+
dependencies:
|
858 |
+
ms "^2.0.0"
|
859 |
+
|
860 | |
861 |
+
version "0.4.24"
|
862 |
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
863 |
+
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
|
864 |
+
dependencies:
|
865 |
+
safer-buffer ">= 2.1.2 < 3"
|
866 |
+
|
867 |
+
ignore-by-default@^1.0.1:
|
868 |
+
version "1.0.1"
|
869 |
+
resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
|
870 |
+
integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==
|
871 |
+
|
872 |
+
[email protected], inherits@^2.0.3:
|
873 |
+
version "2.0.4"
|
874 |
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
875 |
+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
876 |
+
|
877 | |
878 |
+
version "1.9.1"
|
879 |
+
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
880 |
+
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
|
881 |
+
|
882 |
+
is-any-array@^2.0.0:
|
883 |
+
version "2.0.1"
|
884 |
+
resolved "https://registry.yarnpkg.com/is-any-array/-/is-any-array-2.0.1.tgz#9233242a9c098220290aa2ec28f82ca7fa79899e"
|
885 |
+
integrity sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==
|
886 |
+
|
887 |
+
is-arrayish@^0.3.1:
|
888 |
+
version "0.3.2"
|
889 |
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
|
890 |
+
integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
|
891 |
+
|
892 |
+
is-binary-path@~2.1.0:
|
893 |
+
version "2.1.0"
|
894 |
+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
895 |
+
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
896 |
+
dependencies:
|
897 |
+
binary-extensions "^2.0.0"
|
898 |
+
|
899 |
+
is-buffer@~1.1.6:
|
900 |
+
version "1.1.6"
|
901 |
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
902 |
+
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
903 |
+
|
904 |
+
is-extglob@^2.1.1:
|
905 |
+
version "2.1.1"
|
906 |
+
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
907 |
+
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
|
908 |
+
|
909 |
+
is-glob@^4.0.1, is-glob@~4.0.1:
|
910 |
+
version "4.0.3"
|
911 |
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
|
912 |
+
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
|
913 |
+
dependencies:
|
914 |
+
is-extglob "^2.1.1"
|
915 |
+
|
916 |
+
is-number@^7.0.0:
|
917 |
+
version "7.0.0"
|
918 |
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
919 |
+
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
920 |
+
|
921 |
+
is-stream@^2.0.0:
|
922 |
+
version "2.0.1"
|
923 |
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
|
924 |
+
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
|
925 |
+
|
926 |
+
js-tiktoken@^1.0.7, js-tiktoken@^1.0.8:
|
927 |
+
version "1.0.10"
|
928 |
+
resolved "https://registry.yarnpkg.com/js-tiktoken/-/js-tiktoken-1.0.10.tgz#2b343ec169399dcee8f9ef9807dbd4fafd3b30dc"
|
929 |
+
integrity sha512-ZoSxbGjvGyMT13x6ACo9ebhDha/0FHdKA+OsQcMOWcm1Zs7r90Rhk5lhERLzji+3rA7EKpXCgwXcM5fF3DMpdA==
|
930 |
+
dependencies:
|
931 |
+
base64-js "^1.5.1"
|
932 |
+
|
933 |
+
js-yaml@^4.1.0:
|
934 |
+
version "4.1.0"
|
935 |
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
|
936 |
+
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
|
937 |
+
dependencies:
|
938 |
+
argparse "^2.0.1"
|
939 |
+
|
940 |
+
jsonpointer@^5.0.1:
|
941 |
+
version "5.0.1"
|
942 |
+
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559"
|
943 |
+
integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
|
944 |
+
|
945 |
+
kuler@^2.0.0:
|
946 |
+
version "2.0.0"
|
947 |
+
resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3"
|
948 |
+
integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==
|
949 |
+
|
950 |
+
langchain@^0.1.30:
|
951 |
+
version "0.1.30"
|
952 |
+
resolved "https://registry.yarnpkg.com/langchain/-/langchain-0.1.30.tgz#e1adb3f1849fcd5c596c668300afd5dc8cb37a97"
|
953 |
+
integrity sha512-5h/vNMmutQ98tbB0sPDlAileZVca6A2McFgGa3+D56Dm8mSSCzTQL2DngPA6h09DlKDpSr7+6PdFw5Hoj0ZDSw==
|
954 |
+
dependencies:
|
955 |
+
"@anthropic-ai/sdk" "^0.9.1"
|
956 |
+
"@langchain/community" "~0.0.41"
|
957 |
+
"@langchain/core" "~0.1.44"
|
958 |
+
"@langchain/openai" "~0.0.19"
|
959 |
+
binary-extensions "^2.2.0"
|
960 |
+
js-tiktoken "^1.0.7"
|
961 |
+
js-yaml "^4.1.0"
|
962 |
+
jsonpointer "^5.0.1"
|
963 |
+
langchainhub "~0.0.8"
|
964 |
+
langsmith "~0.1.7"
|
965 |
+
ml-distance "^4.0.0"
|
966 |
+
openapi-types "^12.1.3"
|
967 |
+
p-retry "4"
|
968 |
+
uuid "^9.0.0"
|
969 |
+
yaml "^2.2.1"
|
970 |
+
zod "^3.22.4"
|
971 |
+
zod-to-json-schema "^3.22.3"
|
972 |
+
|
973 |
+
langchainhub@~0.0.8:
|
974 |
+
version "0.0.8"
|
975 |
+
resolved "https://registry.yarnpkg.com/langchainhub/-/langchainhub-0.0.8.tgz#fd4b96dc795e22e36c1a20bad31b61b0c33d3110"
|
976 |
+
integrity sha512-Woyb8YDHgqqTOZvWIbm2CaFDGfZ4NTSyXV687AG4vXEfoNo7cGQp7nhl7wL3ehenKWmNEmcxCLgOZzW8jE6lOQ==
|
977 |
+
|
978 |
+
langsmith@~0.1.1, langsmith@~0.1.7:
|
979 |
+
version "0.1.14"
|
980 |
+
resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.1.14.tgz#2b889dbcfb49547614df276a4a5a063092a1585d"
|
981 |
+
integrity sha512-iEzQLLB7/0nRpAwNBAR7B7N64fyByg5UsNjSvLaCCkQ9AS68PSafjB8xQkyI8QXXrGjU1dEqDRoa8m4SUuRdUw==
|
982 |
+
dependencies:
|
983 |
+
"@types/uuid" "^9.0.1"
|
984 |
+
commander "^10.0.1"
|
985 |
+
p-queue "^6.6.2"
|
986 |
+
p-retry "4"
|
987 |
+
uuid "^9.0.0"
|
988 |
+
|
989 |
+
logform@^2.3.2, logform@^2.4.0:
|
990 |
+
version "2.6.0"
|
991 |
+
resolved "https://registry.yarnpkg.com/logform/-/logform-2.6.0.tgz#8c82a983f05d6eaeb2d75e3decae7a768b2bf9b5"
|
992 |
+
integrity sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==
|
993 |
+
dependencies:
|
994 |
+
"@colors/colors" "1.6.0"
|
995 |
+
"@types/triple-beam" "^1.3.2"
|
996 |
+
fecha "^4.2.0"
|
997 |
+
ms "^2.1.1"
|
998 |
+
safe-stable-stringify "^2.3.1"
|
999 |
+
triple-beam "^1.3.0"
|
1000 |
+
|
1001 |
+
lru-cache@^6.0.0:
|
1002 |
+
version "6.0.0"
|
1003 |
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
1004 |
+
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
|
1005 |
+
dependencies:
|
1006 |
+
yallist "^4.0.0"
|
1007 |
+
|
1008 |
+
make-error@^1.1.1:
|
1009 |
+
version "1.3.6"
|
1010 |
+
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
|
1011 |
+
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
|
1012 |
+
|
1013 |
+
md5@^2.3.0:
|
1014 |
+
version "2.3.0"
|
1015 |
+
resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f"
|
1016 |
+
integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==
|
1017 |
+
dependencies:
|
1018 |
+
charenc "0.0.2"
|
1019 |
+
crypt "0.0.2"
|
1020 |
+
is-buffer "~1.1.6"
|
1021 |
+
|
1022 | |
1023 |
+
version "0.3.0"
|
1024 |
+
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
1025 |
+
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
|
1026 |
+
|
1027 | |
1028 |
+
version "1.0.1"
|
1029 |
+
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
|
1030 |
+
integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==
|
1031 |
+
|
1032 |
+
methods@~1.1.2:
|
1033 |
+
version "1.1.2"
|
1034 |
+
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
|
1035 |
+
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
|
1036 |
+
|
1037 | |
1038 |
+
version "1.52.0"
|
1039 |
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
|
1040 |
+
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
|
1041 |
+
|
1042 |
+
mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34:
|
1043 |
+
version "2.1.35"
|
1044 |
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
|
1045 |
+
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
|
1046 |
+
dependencies:
|
1047 |
+
mime-db "1.52.0"
|
1048 |
+
|
1049 | |
1050 |
+
version "1.6.0"
|
1051 |
+
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
|
1052 |
+
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
|
1053 |
+
|
1054 |
+
minimatch@^3.1.2:
|
1055 |
+
version "3.1.2"
|
1056 |
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
|
1057 |
+
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
|
1058 |
+
dependencies:
|
1059 |
+
brace-expansion "^1.1.7"
|
1060 |
+
|
1061 |
+
ml-array-mean@^1.1.6:
|
1062 |
+
version "1.1.6"
|
1063 |
+
resolved "https://registry.yarnpkg.com/ml-array-mean/-/ml-array-mean-1.1.6.tgz#d951a700dc8e3a17b3e0a583c2c64abd0c619c56"
|
1064 |
+
integrity sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==
|
1065 |
+
dependencies:
|
1066 |
+
ml-array-sum "^1.1.6"
|
1067 |
+
|
1068 |
+
ml-array-sum@^1.1.6:
|
1069 |
+
version "1.1.6"
|
1070 |
+
resolved "https://registry.yarnpkg.com/ml-array-sum/-/ml-array-sum-1.1.6.tgz#d1d89c20793cd29c37b09d40e85681aa4515a955"
|
1071 |
+
integrity sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==
|
1072 |
+
dependencies:
|
1073 |
+
is-any-array "^2.0.0"
|
1074 |
+
|
1075 |
+
ml-distance-euclidean@^2.0.0:
|
1076 |
+
version "2.0.0"
|
1077 |
+
resolved "https://registry.yarnpkg.com/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz#3a668d236649d1b8fec96380b9435c6f42c9a817"
|
1078 |
+
integrity sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==
|
1079 |
+
|
1080 |
+
ml-distance@^4.0.0:
|
1081 |
+
version "4.0.1"
|
1082 |
+
resolved "https://registry.yarnpkg.com/ml-distance/-/ml-distance-4.0.1.tgz#4741d17a1735888c5388823762271dfe604bd019"
|
1083 |
+
integrity sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==
|
1084 |
+
dependencies:
|
1085 |
+
ml-array-mean "^1.1.6"
|
1086 |
+
ml-distance-euclidean "^2.0.0"
|
1087 |
+
ml-tree-similarity "^1.0.0"
|
1088 |
+
|
1089 |
+
ml-tree-similarity@^1.0.0:
|
1090 |
+
version "1.0.0"
|
1091 |
+
resolved "https://registry.yarnpkg.com/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz#24705a107e32829e24d945e87219e892159c53f0"
|
1092 |
+
integrity sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==
|
1093 |
+
dependencies:
|
1094 |
+
binary-search "^1.3.5"
|
1095 |
+
num-sort "^2.0.0"
|
1096 |
+
|
1097 | |
1098 |
+
version "2.0.0"
|
1099 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
1100 |
+
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
|
1101 |
+
|
1102 | |
1103 |
+
version "2.1.2"
|
1104 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
1105 |
+
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
1106 |
+
|
1107 |
+
[email protected], ms@^2.0.0, ms@^2.1.1:
|
1108 |
+
version "2.1.3"
|
1109 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
1110 |
+
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
1111 |
+
|
1112 | |
1113 |
+
version "0.6.3"
|
1114 |
+
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
|
1115 |
+
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
|
1116 |
+
|
1117 | |
1118 |
+
version "1.0.0"
|
1119 |
+
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
|
1120 |
+
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
|
1121 |
+
|
1122 |
+
node-fetch@^2.6.7:
|
1123 |
+
version "2.7.0"
|
1124 |
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
|
1125 |
+
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
|
1126 |
+
dependencies:
|
1127 |
+
whatwg-url "^5.0.0"
|
1128 |
+
|
1129 |
+
nodemon@^3.1.0:
|
1130 |
+
version "3.1.0"
|
1131 |
+
resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.0.tgz#ff7394f2450eb6a5e96fe4180acd5176b29799c9"
|
1132 |
+
integrity sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==
|
1133 |
+
dependencies:
|
1134 |
+
chokidar "^3.5.2"
|
1135 |
+
debug "^4"
|
1136 |
+
ignore-by-default "^1.0.1"
|
1137 |
+
minimatch "^3.1.2"
|
1138 |
+
pstree.remy "^1.1.8"
|
1139 |
+
semver "^7.5.3"
|
1140 |
+
simple-update-notifier "^2.0.0"
|
1141 |
+
supports-color "^5.5.0"
|
1142 |
+
touch "^3.1.0"
|
1143 |
+
undefsafe "^2.0.5"
|
1144 |
+
|
1145 |
+
nopt@~1.0.10:
|
1146 |
+
version "1.0.10"
|
1147 |
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
|
1148 |
+
integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==
|
1149 |
+
dependencies:
|
1150 |
+
abbrev "1"
|
1151 |
+
|
1152 |
+
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
1153 |
+
version "3.0.0"
|
1154 |
+
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
1155 |
+
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
1156 |
+
|
1157 |
+
num-sort@^2.0.0:
|
1158 |
+
version "2.1.0"
|
1159 |
+
resolved "https://registry.yarnpkg.com/num-sort/-/num-sort-2.1.0.tgz#1cbb37aed071329fdf41151258bc011898577a9b"
|
1160 |
+
integrity sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==
|
1161 |
+
|
1162 |
+
object-assign@^4:
|
1163 |
+
version "4.1.1"
|
1164 |
+
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
1165 |
+
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
|
1166 |
+
|
1167 |
+
object-inspect@^1.13.1:
|
1168 |
+
version "1.13.1"
|
1169 |
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
|
1170 |
+
integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
|
1171 |
+
|
1172 | |
1173 |
+
version "2.4.1"
|
1174 |
+
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
|
1175 |
+
integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
|
1176 |
+
dependencies:
|
1177 |
+
ee-first "1.1.1"
|
1178 |
+
|
1179 |
+
one-time@^1.0.0:
|
1180 |
+
version "1.0.0"
|
1181 |
+
resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45"
|
1182 |
+
integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==
|
1183 |
+
dependencies:
|
1184 |
+
fn.name "1.x.x"
|
1185 |
+
|
1186 |
+
openai@^4.26.0:
|
1187 |
+
version "4.31.0"
|
1188 |
+
resolved "https://registry.yarnpkg.com/openai/-/openai-4.31.0.tgz#5d96045c4eb244fa21f0fff0981043a2c9f09e8c"
|
1189 |
+
integrity sha512-JebkRnRGEGLnJt3+bJ5B7au8nBeZvJjs9baVxDmUZ5+BgafAdy6KDxJGSuyaw/IA+ErqY3jmOH5cDC2mCDJF2w==
|
1190 |
+
dependencies:
|
1191 |
+
"@types/node" "^18.11.18"
|
1192 |
+
"@types/node-fetch" "^2.6.4"
|
1193 |
+
abort-controller "^3.0.0"
|
1194 |
+
agentkeepalive "^4.2.1"
|
1195 |
+
digest-fetch "^1.3.0"
|
1196 |
+
form-data-encoder "1.7.2"
|
1197 |
+
formdata-node "^4.3.2"
|
1198 |
+
node-fetch "^2.6.7"
|
1199 |
+
web-streams-polyfill "^3.2.1"
|
1200 |
+
|
1201 |
+
openapi-types@^12.1.3:
|
1202 |
+
version "12.1.3"
|
1203 |
+
resolved "https://registry.yarnpkg.com/openapi-types/-/openapi-types-12.1.3.tgz#471995eb26c4b97b7bd356aacf7b91b73e777dd3"
|
1204 |
+
integrity sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==
|
1205 |
+
|
1206 |
+
p-finally@^1.0.0:
|
1207 |
+
version "1.0.0"
|
1208 |
+
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
1209 |
+
integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
|
1210 |
+
|
1211 |
+
p-queue@^6.6.2:
|
1212 |
+
version "6.6.2"
|
1213 |
+
resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
|
1214 |
+
integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
|
1215 |
+
dependencies:
|
1216 |
+
eventemitter3 "^4.0.4"
|
1217 |
+
p-timeout "^3.2.0"
|
1218 |
+
|
1219 |
+
p-retry@4:
|
1220 |
+
version "4.6.2"
|
1221 |
+
resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16"
|
1222 |
+
integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==
|
1223 |
+
dependencies:
|
1224 |
+
"@types/retry" "0.12.0"
|
1225 |
+
retry "^0.13.1"
|
1226 |
+
|
1227 |
+
p-timeout@^3.2.0:
|
1228 |
+
version "3.2.0"
|
1229 |
+
resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
|
1230 |
+
integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
|
1231 |
+
dependencies:
|
1232 |
+
p-finally "^1.0.0"
|
1233 |
+
|
1234 |
+
parseurl@~1.3.3:
|
1235 |
+
version "1.3.3"
|
1236 |
+
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
|
1237 |
+
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
|
1238 |
+
|
1239 | |
1240 |
+
version "0.1.7"
|
1241 |
+
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
1242 |
+
integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==
|
1243 |
+
|
1244 |
+
picomatch@^2.0.4, picomatch@^2.2.1:
|
1245 |
+
version "2.3.1"
|
1246 |
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
|
1247 |
+
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
1248 |
+
|
1249 |
+
prettier@^3.2.5:
|
1250 |
+
version "3.2.5"
|
1251 |
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368"
|
1252 |
+
integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==
|
1253 |
+
|
1254 |
+
proxy-addr@~2.0.7:
|
1255 |
+
version "2.0.7"
|
1256 |
+
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
|
1257 |
+
integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
|
1258 |
+
dependencies:
|
1259 |
+
forwarded "0.2.0"
|
1260 |
+
ipaddr.js "1.9.1"
|
1261 |
+
|
1262 |
+
proxy-from-env@^1.1.0:
|
1263 |
+
version "1.1.0"
|
1264 |
+
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
|
1265 |
+
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
|
1266 |
+
|
1267 |
+
pstree.remy@^1.1.8:
|
1268 |
+
version "1.1.8"
|
1269 |
+
resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
|
1270 |
+
integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==
|
1271 |
+
|
1272 | |
1273 |
+
version "6.11.0"
|
1274 |
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
|
1275 |
+
integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
|
1276 |
+
dependencies:
|
1277 |
+
side-channel "^1.0.4"
|
1278 |
+
|
1279 |
+
range-parser@~1.2.1:
|
1280 |
+
version "1.2.1"
|
1281 |
+
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
|
1282 |
+
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
|
1283 |
+
|
1284 | |
1285 |
+
version "2.5.2"
|
1286 |
+
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
|
1287 |
+
integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
|
1288 |
+
dependencies:
|
1289 |
+
bytes "3.1.2"
|
1290 |
+
http-errors "2.0.0"
|
1291 |
+
iconv-lite "0.4.24"
|
1292 |
+
unpipe "1.0.0"
|
1293 |
+
|
1294 |
+
readable-stream@^3.4.0, readable-stream@^3.6.0:
|
1295 |
+
version "3.6.2"
|
1296 |
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
|
1297 |
+
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
|
1298 |
+
dependencies:
|
1299 |
+
inherits "^2.0.3"
|
1300 |
+
string_decoder "^1.1.1"
|
1301 |
+
util-deprecate "^1.0.1"
|
1302 |
+
|
1303 |
+
readdirp@~3.6.0:
|
1304 |
+
version "3.6.0"
|
1305 |
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
|
1306 |
+
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
|
1307 |
+
dependencies:
|
1308 |
+
picomatch "^2.2.1"
|
1309 |
+
|
1310 |
+
retry@^0.13.1:
|
1311 |
+
version "0.13.1"
|
1312 |
+
resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
|
1313 |
+
integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
|
1314 |
+
|
1315 |
+
[email protected], safe-buffer@~5.2.0:
|
1316 |
+
version "5.2.1"
|
1317 |
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
1318 |
+
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
1319 |
+
|
1320 |
+
safe-buffer@~5.1.1:
|
1321 |
+
version "5.1.2"
|
1322 |
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
1323 |
+
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
|
1324 |
+
|
1325 |
+
safe-stable-stringify@^2.3.1:
|
1326 |
+
version "2.4.3"
|
1327 |
+
resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz#138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886"
|
1328 |
+
integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==
|
1329 |
+
|
1330 |
+
"safer-buffer@>= 2.1.2 < 3":
|
1331 |
+
version "2.1.2"
|
1332 |
+
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
1333 |
+
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
1334 |
+
|
1335 |
+
semver@^7.5.3:
|
1336 |
+
version "7.6.0"
|
1337 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
|
1338 |
+
integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
|
1339 |
+
dependencies:
|
1340 |
+
lru-cache "^6.0.0"
|
1341 |
+
|
1342 | |
1343 |
+
version "0.18.0"
|
1344 |
+
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
|
1345 |
+
integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
|
1346 |
+
dependencies:
|
1347 |
+
debug "2.6.9"
|
1348 |
+
depd "2.0.0"
|
1349 |
+
destroy "1.2.0"
|
1350 |
+
encodeurl "~1.0.2"
|
1351 |
+
escape-html "~1.0.3"
|
1352 |
+
etag "~1.8.1"
|
1353 |
+
fresh "0.5.2"
|
1354 |
+
http-errors "2.0.0"
|
1355 |
+
mime "1.6.0"
|
1356 |
+
ms "2.1.3"
|
1357 |
+
on-finished "2.4.1"
|
1358 |
+
range-parser "~1.2.1"
|
1359 |
+
statuses "2.0.1"
|
1360 |
+
|
1361 | |
1362 |
+
version "1.15.0"
|
1363 |
+
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
|
1364 |
+
integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
|
1365 |
+
dependencies:
|
1366 |
+
encodeurl "~1.0.2"
|
1367 |
+
escape-html "~1.0.3"
|
1368 |
+
parseurl "~1.3.3"
|
1369 |
+
send "0.18.0"
|
1370 |
+
|
1371 |
+
set-function-length@^1.2.1:
|
1372 |
+
version "1.2.2"
|
1373 |
+
resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
|
1374 |
+
integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
|
1375 |
+
dependencies:
|
1376 |
+
define-data-property "^1.1.4"
|
1377 |
+
es-errors "^1.3.0"
|
1378 |
+
function-bind "^1.1.2"
|
1379 |
+
get-intrinsic "^1.2.4"
|
1380 |
+
gopd "^1.0.1"
|
1381 |
+
has-property-descriptors "^1.0.2"
|
1382 |
+
|
1383 | |
1384 |
+
version "1.2.0"
|
1385 |
+
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
|
1386 |
+
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
|
1387 |
+
|
1388 |
+
side-channel@^1.0.4:
|
1389 |
+
version "1.0.6"
|
1390 |
+
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2"
|
1391 |
+
integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==
|
1392 |
+
dependencies:
|
1393 |
+
call-bind "^1.0.7"
|
1394 |
+
es-errors "^1.3.0"
|
1395 |
+
get-intrinsic "^1.2.4"
|
1396 |
+
object-inspect "^1.13.1"
|
1397 |
+
|
1398 |
+
simple-swizzle@^0.2.2:
|
1399 |
+
version "0.2.2"
|
1400 |
+
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
|
1401 |
+
integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==
|
1402 |
+
dependencies:
|
1403 |
+
is-arrayish "^0.3.1"
|
1404 |
+
|
1405 |
+
simple-update-notifier@^2.0.0:
|
1406 |
+
version "2.0.0"
|
1407 |
+
resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb"
|
1408 |
+
integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==
|
1409 |
+
dependencies:
|
1410 |
+
semver "^7.5.3"
|
1411 |
+
|
1412 | |
1413 |
+
version "0.0.10"
|
1414 |
+
resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
|
1415 |
+
integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==
|
1416 |
+
|
1417 | |
1418 |
+
version "2.0.1"
|
1419 |
+
resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
|
1420 |
+
integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
|
1421 |
+
|
1422 |
+
string_decoder@^1.1.1:
|
1423 |
+
version "1.3.0"
|
1424 |
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
|
1425 |
+
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
|
1426 |
+
dependencies:
|
1427 |
+
safe-buffer "~5.2.0"
|
1428 |
+
|
1429 |
+
supports-color@^5.5.0:
|
1430 |
+
version "5.5.0"
|
1431 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
1432 |
+
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
1433 |
+
dependencies:
|
1434 |
+
has-flag "^3.0.0"
|
1435 |
+
|
1436 | |
1437 |
+
version "1.0.0"
|
1438 |
+
resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5"
|
1439 |
+
integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==
|
1440 |
+
|
1441 |
+
to-regex-range@^5.0.1:
|
1442 |
+
version "5.0.1"
|
1443 |
+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
1444 |
+
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
1445 |
+
dependencies:
|
1446 |
+
is-number "^7.0.0"
|
1447 |
+
|
1448 | |
1449 |
+
version "1.0.1"
|
1450 |
+
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
|
1451 |
+
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
|
1452 |
+
|
1453 |
+
touch@^3.1.0:
|
1454 |
+
version "3.1.0"
|
1455 |
+
resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b"
|
1456 |
+
integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==
|
1457 |
+
dependencies:
|
1458 |
+
nopt "~1.0.10"
|
1459 |
+
|
1460 |
+
tr46@~0.0.3:
|
1461 |
+
version "0.0.3"
|
1462 |
+
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
|
1463 |
+
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
|
1464 |
+
|
1465 |
+
triple-beam@^1.3.0:
|
1466 |
+
version "1.4.1"
|
1467 |
+
resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.4.1.tgz#6fde70271dc6e5d73ca0c3b24e2d92afb7441984"
|
1468 |
+
integrity sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==
|
1469 |
+
|
1470 |
+
ts-node@^10.9.2:
|
1471 |
+
version "10.9.2"
|
1472 |
+
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f"
|
1473 |
+
integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==
|
1474 |
+
dependencies:
|
1475 |
+
"@cspotcode/source-map-support" "^0.8.0"
|
1476 |
+
"@tsconfig/node10" "^1.0.7"
|
1477 |
+
"@tsconfig/node12" "^1.0.7"
|
1478 |
+
"@tsconfig/node14" "^1.0.0"
|
1479 |
+
"@tsconfig/node16" "^1.0.2"
|
1480 |
+
acorn "^8.4.1"
|
1481 |
+
acorn-walk "^8.1.1"
|
1482 |
+
arg "^4.1.0"
|
1483 |
+
create-require "^1.1.0"
|
1484 |
+
diff "^4.0.1"
|
1485 |
+
make-error "^1.1.1"
|
1486 |
+
v8-compile-cache-lib "^3.0.1"
|
1487 |
+
yn "3.1.1"
|
1488 |
+
|
1489 |
+
type-is@~1.6.18:
|
1490 |
+
version "1.6.18"
|
1491 |
+
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
|
1492 |
+
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
|
1493 |
+
dependencies:
|
1494 |
+
media-typer "0.3.0"
|
1495 |
+
mime-types "~2.1.24"
|
1496 |
+
|
1497 |
+
typescript@^5.4.3:
|
1498 |
+
version "5.4.3"
|
1499 |
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
|
1500 |
+
integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==
|
1501 |
+
|
1502 |
+
undefsafe@^2.0.5:
|
1503 |
+
version "2.0.5"
|
1504 |
+
resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c"
|
1505 |
+
integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==
|
1506 |
+
|
1507 |
+
undici-types@~5.26.4:
|
1508 |
+
version "5.26.5"
|
1509 |
+
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
|
1510 |
+
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
|
1511 |
+
|
1512 |
+
[email protected], unpipe@~1.0.0:
|
1513 |
+
version "1.0.0"
|
1514 |
+
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
|
1515 |
+
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
|
1516 |
+
|
1517 |
+
util-deprecate@^1.0.1:
|
1518 |
+
version "1.0.2"
|
1519 |
+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
1520 |
+
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
|
1521 |
+
|
1522 | |
1523 |
+
version "1.0.1"
|
1524 |
+
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
|
1525 |
+
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
|
1526 |
+
|
1527 |
+
uuid@^9.0.0:
|
1528 |
+
version "9.0.1"
|
1529 |
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
|
1530 |
+
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
|
1531 |
+
|
1532 |
+
v8-compile-cache-lib@^3.0.1:
|
1533 |
+
version "3.0.1"
|
1534 |
+
resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
|
1535 |
+
integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==
|
1536 |
+
|
1537 |
+
validate.io-array@^1.0.3, validate.io-array@^1.0.5:
|
1538 |
+
version "1.0.6"
|
1539 |
+
resolved "https://registry.yarnpkg.com/validate.io-array/-/validate.io-array-1.0.6.tgz#5b5a2cafd8f8b85abb2f886ba153f2d93a27774d"
|
1540 |
+
integrity sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==
|
1541 |
+
|
1542 |
+
validate.io-function@^1.0.2:
|
1543 |
+
version "1.0.2"
|
1544 |
+
resolved "https://registry.yarnpkg.com/validate.io-function/-/validate.io-function-1.0.2.tgz#343a19802ed3b1968269c780e558e93411c0bad7"
|
1545 |
+
integrity sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==
|
1546 |
+
|
1547 |
+
vary@^1, vary@~1.1.2:
|
1548 |
+
version "1.1.2"
|
1549 |
+
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
1550 |
+
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
|
1551 |
+
|
1552 | |
1553 |
+
version "4.0.0-beta.3"
|
1554 |
+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38"
|
1555 |
+
integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==
|
1556 |
+
|
1557 |
+
web-streams-polyfill@^3.2.1:
|
1558 |
+
version "3.3.3"
|
1559 |
+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
|
1560 |
+
integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==
|
1561 |
+
|
1562 |
+
webidl-conversions@^3.0.0:
|
1563 |
+
version "3.0.1"
|
1564 |
+
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
1565 |
+
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
|
1566 |
+
|
1567 |
+
whatwg-url@^5.0.0:
|
1568 |
+
version "5.0.0"
|
1569 |
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
|
1570 |
+
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
|
1571 |
+
dependencies:
|
1572 |
+
tr46 "~0.0.3"
|
1573 |
+
webidl-conversions "^3.0.0"
|
1574 |
+
|
1575 |
+
winston-transport@^4.7.0:
|
1576 |
+
version "4.7.0"
|
1577 |
+
resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.7.0.tgz#e302e6889e6ccb7f383b926df6936a5b781bd1f0"
|
1578 |
+
integrity sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==
|
1579 |
+
dependencies:
|
1580 |
+
logform "^2.3.2"
|
1581 |
+
readable-stream "^3.6.0"
|
1582 |
+
triple-beam "^1.3.0"
|
1583 |
+
|
1584 |
+
winston@^3.13.0:
|
1585 |
+
version "3.13.0"
|
1586 |
+
resolved "https://registry.yarnpkg.com/winston/-/winston-3.13.0.tgz#e76c0d722f78e04838158c61adc1287201de7ce3"
|
1587 |
+
integrity sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==
|
1588 |
+
dependencies:
|
1589 |
+
"@colors/colors" "^1.6.0"
|
1590 |
+
"@dabh/diagnostics" "^2.0.2"
|
1591 |
+
async "^3.2.3"
|
1592 |
+
is-stream "^2.0.0"
|
1593 |
+
logform "^2.4.0"
|
1594 |
+
one-time "^1.0.0"
|
1595 |
+
readable-stream "^3.4.0"
|
1596 |
+
safe-stable-stringify "^2.3.1"
|
1597 |
+
stack-trace "0.0.x"
|
1598 |
+
triple-beam "^1.3.0"
|
1599 |
+
winston-transport "^4.7.0"
|
1600 |
+
|
1601 |
+
ws@^8.16.0:
|
1602 |
+
version "8.16.0"
|
1603 |
+
resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4"
|
1604 |
+
integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==
|
1605 |
+
|
1606 |
+
yallist@^4.0.0:
|
1607 |
+
version "4.0.0"
|
1608 |
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
1609 |
+
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
1610 |
+
|
1611 |
+
yaml@^2.2.1:
|
1612 |
+
version "2.4.1"
|
1613 |
+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.1.tgz#2e57e0b5e995292c25c75d2658f0664765210eed"
|
1614 |
+
integrity sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==
|
1615 |
+
|
1616 | |
1617 |
+
version "3.1.1"
|
1618 |
+
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
|
1619 |
+
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
|
1620 |
+
|
1621 |
+
zod-to-json-schema@^3.22.3:
|
1622 |
+
version "3.22.5"
|
1623 |
+
resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.22.5.tgz#3646e81cfc318dbad2a22519e5ce661615418673"
|
1624 |
+
integrity sha512-+akaPo6a0zpVCCseDed504KBJUQpEW5QZw7RMneNmKw+fGaML1Z9tUNLnHHAC8x6dzVRO1eB2oEMyZRnuBZg7Q==
|
1625 |
+
|
1626 |
+
zod@^3.22.3, zod@^3.22.4:
|
1627 |
+
version "3.22.4"
|
1628 |
+
resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.4.tgz#f31c3a9386f61b1f228af56faa9255e845cf3fff"
|
1629 |
+
integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==
|