mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00
@@ -21,13 +21,17 @@ const nextConfig = {
|
||||
asyncWebAssembly: true,
|
||||
layers: true
|
||||
};
|
||||
config.module.rules = config.module.rules.concat([
|
||||
config.module = {
|
||||
...config.module,
|
||||
rules: config.module.rules.concat([
|
||||
{
|
||||
test: /\.svg$/i,
|
||||
issuer: /\.[jt]sx?$/,
|
||||
use: ['@svgr/webpack']
|
||||
}
|
||||
]);
|
||||
]),
|
||||
exprContextCritical: false
|
||||
};
|
||||
|
||||
return config;
|
||||
}
|
||||
|
@@ -261,7 +261,8 @@ export const KBSearchModule: FlowModuleTemplateType = {
|
||||
{
|
||||
key: 'quoteQA',
|
||||
label: '引用内容',
|
||||
description: '搜索结果为空时不返回',
|
||||
description:
|
||||
'始终返回数组,如果希望搜索结果为空时执行额外操作,需要用到上面的两个输入以及目标模块的触发器',
|
||||
type: FlowOutputItemTypeEnum.source,
|
||||
valueType: FlowValueTypeEnum.kbQuote,
|
||||
targets: []
|
||||
@@ -916,7 +917,8 @@ export const appTemplates: (AppItemType & { avatar: string; intro: string })[] =
|
||||
{
|
||||
key: 'quoteQA',
|
||||
label: '引用内容',
|
||||
description: '搜索结果为空时不返回',
|
||||
description:
|
||||
'始终返回数组,如果希望搜索结果为空时执行额外操作,需要用到上面的两个输入以及目标模块的触发器',
|
||||
type: 'source',
|
||||
valueType: 'kb_quote',
|
||||
targets: [
|
||||
@@ -1892,7 +1894,8 @@ export const appTemplates: (AppItemType & { avatar: string; intro: string })[] =
|
||||
{
|
||||
key: 'quoteQA',
|
||||
label: '引用内容',
|
||||
description: '搜索结果为空时不返回',
|
||||
description:
|
||||
'始终返回数组,如果希望搜索结果为空时执行额外操作,需要用到上面的两个输入以及目标模块的触发器',
|
||||
type: 'source',
|
||||
valueType: 'kb_quote',
|
||||
targets: [
|
||||
|
70
docSite/docs/develop/data_config/chat_models.md
Normal file
70
docSite/docs/develop/data_config/chat_models.md
Normal file
@@ -0,0 +1,70 @@
|
||||
---
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
# Other Chat Model Configuration
|
||||
|
||||
By default, FastGPT is only configured with 3 models of GPT. If you need to integrate other models, you need to do some additional configuration.
|
||||
|
||||
## 1. Install OneAPI
|
||||
|
||||
First, you need to deploy a [OneAPI](/docs/develop/oneapi) and add the corresponding "channel".
|
||||

|
||||
|
||||
## 2. Add FastGPT Configuration
|
||||
|
||||
You can find the configuration file in /client/src/data/config.json (for local development, you need to copy it as config.local.json). In the configuration file, there is a section for chat model configuration:
|
||||
|
||||
```json
|
||||
"ChatModels": [
|
||||
{
|
||||
"model": "gpt-3.5-turbo", // The model here needs to correspond to the model in OneAPI
|
||||
"name": "FastAI-4k", // The name displayed externally
|
||||
"contextMaxToken": 4000, // Maximum context token, calculated according to GPT35 regardless of the model. Models other than GPT need to roughly calculate this value themselves. You can call the official API to compare the token ratio and then roughly calculate it here.
|
||||
// For example: the ratio of Chinese and English tokens in Wenxin Yiyuan is basically 1:1, while the ratio of Chinese tokens in GPT is 2:1. If the maximum token of Wenxin Yiyuan is 4000, then you can fill in 8000 here, or fill in 7000 for safety.
|
||||
"quoteMaxToken": 2000, // Maximum token for quoting knowledge base
|
||||
"maxTemperature": 1.2, // Maximum temperature
|
||||
"price": 1.5, // Price per token => 1.5 / 100000 * 1000 = 0.015 yuan/1k token
|
||||
"defaultSystem": "" // Default system prompt
|
||||
},
|
||||
{
|
||||
"model": "gpt-3.5-turbo-16k",
|
||||
"name": "FastAI-16k",
|
||||
"contextMaxToken": 16000,
|
||||
"quoteMaxToken": 8000,
|
||||
"maxTemperature": 1.2,
|
||||
"price": 3,
|
||||
"defaultSystem": ""
|
||||
},
|
||||
{
|
||||
"model": "gpt-4",
|
||||
"name": "FastAI-Plus",
|
||||
"contextMaxToken": 8000,
|
||||
"quoteMaxToken": 4000,
|
||||
"maxTemperature": 1.2,
|
||||
"price": 45,
|
||||
"defaultSystem": ""
|
||||
}
|
||||
],
|
||||
```
|
||||
|
||||
### Add a New Model
|
||||
|
||||
Taking Wenxin Yiyuan as an example:
|
||||
|
||||
```json
|
||||
"ChatModels": [
|
||||
...
|
||||
{
|
||||
"model": "ERNIE-Bot",
|
||||
"name": "Wenxin Yiyuan",
|
||||
"contextMaxToken": 4000,
|
||||
"quoteMaxToken": 2000,
|
||||
"maxTemperature": 1,
|
||||
"price": 1.2
|
||||
}
|
||||
...
|
||||
]
|
||||
```
|
||||
|
||||
After adding it, restart the application and you can choose the Wenxin Yiyuan model for conversation.
|
BIN
docSite/docs/develop/data_config/imgs/chatmodels1.png
Normal file
BIN
docSite/docs/develop/data_config/imgs/chatmodels1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 176 KiB |
37
docSite/docs/develop/data_config/intro.md
Normal file
37
docSite/docs/develop/data_config/intro.md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
sidebar_position: 1
|
||||
---
|
||||
|
||||
# Quick Introduction
|
||||
|
||||
Due to the limitations of environment variables in configuring complex content, the new version of FastGPT uses ConfigMap to mount configuration files. You can find the default configuration file at client/data/config.json.
|
||||
In the development environment, you need to make a copy of config.json as config.local.json for it to take effect.
|
||||
This configuration file includes customization of the frontend page, system-level parameters, and AI dialogue models, etc.
|
||||
|
||||
## Brief Explanation of Basic Fields
|
||||
|
||||
Here, we will introduce some basic configuration fields.
|
||||
|
||||
```json
|
||||
// This configuration controls some styles of the frontend
|
||||
"FeConfig": {
|
||||
"show_emptyChat": true, // Whether to display the introduction page when the conversation page is empty
|
||||
"show_register": false, // Whether to display the registration button (including forget password, register account, and third-party login)
|
||||
"show_appStore": false, // Whether to display the app store (currently the permissions are not properly set, so it is useless to open it)
|
||||
"show_userDetail": false, // Whether to display user details (account balance, OpenAI binding)
|
||||
"show_git": true, // Whether to display Git
|
||||
"systemTitle": "FastAI", // The title of the system
|
||||
"authorText": "Made by FastAI Team.", // Signature
|
||||
"gitLoginKey": "" // Git login credentials
|
||||
}
|
||||
```
|
||||
|
||||
```json
|
||||
// This configuration file contains system-level parameters
|
||||
"SystemParams": {
|
||||
"gitLoginSecret": "", // Git login credentials
|
||||
"vectorMaxProcess": 15, // Maximum number of processes for vector generation, set in combination with database performance and key
|
||||
"qaMaxProcess": 15, // Maximum number of processes for QA generation, set in combination with database performance and key
|
||||
"pgIvfflatProbe": 20 // pg vector search probe. Can be ignored before setting up the index, usually only needed for more than 500,000 groups.
|
||||
},
|
||||
```
|
@@ -2,47 +2,45 @@
|
||||
sidebar_position: 1
|
||||
---
|
||||
|
||||
# 快速了解 FastGpt
|
||||
|
||||
FastGPT 是一个基于 LLM 大语言模型的知识库问答系统,提供开箱即用的数据处理、模型调用等能力。同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的问答场景!
|
||||
# Introduction to FastGpt
|
||||
|
||||
FastGPT is a knowledge-based question-answering system built on top of the LLM language model. It provides out-of-the-box capabilities for data processing, model invocation, and more. Additionally, it offers a visual workflow editor called Flow to enable complex question-answering scenarios!
|
||||
| | |
|
||||
| -------------------------- | -------------------------- |
|
||||
|  |  |
|
||||
|  |  |
|
||||
|
||||
## FastGPT 能力
|
||||
## FastGPT Capabilities
|
||||
|
||||
### 1. AI 客服
|
||||
### 1. AI Customer Service
|
||||
|
||||
通过导入文档或已有问答对进行训练,让 AI 模型能根据你的文档进行回答问题。
|
||||
Train the AI model by importing documents or existing question-answer pairs, allowing it to answer questions based on your documents.
|
||||

|
||||
|
||||
### 2. 自动数据预处理
|
||||
### 2. Automated Data Preprocessing
|
||||
|
||||
提供手动输入、直接分段、LLM 自动处理和 CSV 等多种数据导入途径,兼顾精确和快速训练场景。
|
||||
Provides multiple ways to import data, including manual input, direct segmentation, LLM automatic processing, and CSV, to accommodate precise and fast training scenarios.
|
||||

|
||||
|
||||
### 3. 工作流编排
|
||||
|
||||
基于 Flow 模块的工作流编排,可以帮助你设计更加复杂的问答流程。例如查询数据库、查询库存、预约实验室等。
|
||||
### 3. Workflow Orchestration
|
||||
|
||||
Design more complex question-answering workflows using the Flow module. For example, querying databases, checking inventory, scheduling laboratory appointments, etc.
|
||||

|
||||
|
||||
### 4. 无缝衔接的 OpenAPI
|
||||
### 4. Seamless Integration with OpenAPI
|
||||
|
||||
FastGPT 对外 API 接口对齐 GPT 官方接口,你可以直接在现有的 GPT 应用中通过修改 BaseURL 和 Authorization 即可接入 FastGPT。
|
||||
FastGPT's API interface aligns with the official GPT API, allowing you to integrate FastGPT into existing GPT applications by simply modifying the BaseURL and Authorization.
|
||||

|
||||
|
||||
## FastGPT 特点
|
||||
## FastGPT Features
|
||||
|
||||
1. 项目开源。FastGPT 遵循 Apache License 2.0 开源协议,你可以在 GitHub Clone FastGPT 进行二次开发和发布。FastGPT 社区版将保留核心的功能,商业版仅在社区版基础上使用 API 的形式进行扩展,不影响学习使用。
|
||||
2. 独特的 QA 结构。针对客服问答场景设计的 QA 结构,提高在大量数据场景中的准确性。
|
||||
3. 可视化工作流。通过 Flow 模块展示了从问题输入到模型输出的完整流程,便于调试和设计复杂流程。
|
||||
4. 无限扩展。基于 HTTP 进行扩展,无需修改 FastGPT 源码,也可快速接入现有的程序中。
|
||||
5. 便捷调试。提供搜索测试、引用修改、完整对话预览等多种调试途径。
|
||||
6. 支持多种模型:支持 GPT、Claude、文心一言等多类 LLM 模型,未来也将支持自定义的向量模型。
|
||||
1. Open-source project. FastGPT follows the Apache License 2.0 open-source agreement. You can clone FastGPT from GitHub for further development and distribution. The community edition of FastGPT will retain core functionality, while the commercial edition extends it through APIs without affecting learning usage.
|
||||
2. Unique QA structure. Designed specifically for customer service question-answering scenarios, the QA structure improves accuracy in large-scale data scenarios.
|
||||
3. Visual workflow. The Flow module displays the complete process from question input to model output, facilitating debugging and designing complex workflows.
|
||||
4. Infinite scalability. Extensible via HTTP without modifying FastGPT source code, allowing for quick integration into existing programs.
|
||||
5. Convenient debugging. Provides various debugging methods, such as search testing, reference modification, and complete conversation preview.
|
||||
6. Support for multiple models: Supports various LLM models such as GPT, Claude, and Wenxin Yiyuan, and will also support custom vector models in the future.
|
||||
|
||||
## 知识库核心流程图
|
||||
## Core Knowledge Base Process Diagram
|
||||
|
||||

|
||||
|
@@ -8,6 +8,9 @@
|
||||
"sidebar.docSidebar.category.Proxy": {
|
||||
"message": "Proxy 方案"
|
||||
},
|
||||
"sidebar.docSidebar.category.Data Config": {
|
||||
"message": "Config 配置"
|
||||
},
|
||||
"sidebar.docSidebar.category.Deploy": {
|
||||
"message": "部署"
|
||||
},
|
||||
|
@@ -0,0 +1,71 @@
|
||||
---
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
# 其他对话模型配置
|
||||
|
||||
默认情况下,FastGPT 只配置了 GPT 的 3 个模型,如果你需要接入其他模型,需要进行一些额外配置。
|
||||
|
||||
## 一、安装 OneAPI
|
||||
|
||||
首先你需要部署一个 [OneAPI](/docs/develop/oneapi),并添加对应的【渠道】
|
||||
|
||||

|
||||
|
||||
## 二、添加 FastGPT 配置
|
||||
|
||||
可以在 /client/src/data/config.json 里找到配置文件(本地开发需要复制成 config.local.json),配置文件中有一项是对话模型配置:
|
||||
|
||||
```json
|
||||
"ChatModels": [
|
||||
{
|
||||
"model": "gpt-3.5-turbo", // 这里的模型需要对应 OneAPI 的模型
|
||||
"name": "FastAI-4k", // 对外展示的名称
|
||||
"contextMaxToken": 4000, // 最大长下文 token,无论什么模型都按 GPT35 的计算。GPT 外的模型需要自行大致计算下这个值。可以调用官方接口去比对 Token 的倍率,然后在这里粗略计算。
|
||||
// 例如:文心一言的中英文 token 基本是 1:1,而 GPT 的中文 Token 是 2:1,如果文心一言官方最大 Token 是 4000,那么这里就可以填 8000,保险点就填 7000.
|
||||
"quoteMaxToken": 2000, // 引用知识库的最大 Token
|
||||
"maxTemperature": 1.2, // 最大温度
|
||||
"price": 1.5, // 1个token 价格 => 1.5 / 100000 * 1000 = 0.015元/1k token
|
||||
"defaultSystem": "" // 默认的系统提示词
|
||||
},
|
||||
{
|
||||
"model": "gpt-3.5-turbo-16k",
|
||||
"name": "FastAI-16k",
|
||||
"contextMaxToken": 16000,
|
||||
"quoteMaxToken": 8000,
|
||||
"maxTemperature": 1.2,
|
||||
"price": 3,
|
||||
"defaultSystem": ""
|
||||
},
|
||||
{
|
||||
"model": "gpt-4",
|
||||
"name": "FastAI-Plus",
|
||||
"contextMaxToken": 8000,
|
||||
"quoteMaxToken": 4000,
|
||||
"maxTemperature": 1.2,
|
||||
"price": 45,
|
||||
"defaultSystem": ""
|
||||
}
|
||||
],
|
||||
```
|
||||
|
||||
### 添加新模型
|
||||
|
||||
以添加文心一言为例:
|
||||
|
||||
```json
|
||||
"ChatModels": [
|
||||
...
|
||||
{
|
||||
"model": "ERNIE-Bot",
|
||||
"name": "文心一言",
|
||||
"contextMaxToken": 4000,
|
||||
"quoteMaxToken": 2000,
|
||||
"maxTemperature": 1,
|
||||
"price": 1.2
|
||||
}
|
||||
...
|
||||
]
|
||||
```
|
||||
|
||||
添加完后,重启应用即可在选择文心一言模型进行对话。
|
Binary file not shown.
After Width: | Height: | Size: 176 KiB |
@@ -2,7 +2,7 @@
|
||||
sidebar_position: 1
|
||||
---
|
||||
|
||||
# Config 配置文件说明
|
||||
# 快速介绍
|
||||
|
||||
由于环境变量不利于配置复杂的内容,新版 FastGPT 采用了 ConfigMap 的形式挂载配置文件,你可以在 client/data/config.json 看到默认的配置文件。
|
||||
|
274
docSite/pnpm-lock.yaml
generated
274
docSite/pnpm-lock.yaml
generated
@@ -1,12 +1,16 @@
|
||||
lockfileVersion: '6.0'
|
||||
lockfileVersion: '6.1'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
dependencies:
|
||||
'@docusaurus/core':
|
||||
specifier: 2.4.1
|
||||
version: registry.npmmirror.com/@docusaurus/core@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
version: registry.npmmirror.com/@docusaurus/core@2.4.1(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/preset-classic':
|
||||
specifier: 2.4.1
|
||||
version: registry.npmmirror.com/@docusaurus/preset-classic@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
version: registry.npmmirror.com/@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0)(typescript@4.7.4)
|
||||
'@mdx-js/react':
|
||||
specifier: ^1.6.22
|
||||
version: registry.npmmirror.com/@mdx-js/react@1.6.22(react@17.0.2)
|
||||
@@ -36,21 +40,21 @@ devDependencies:
|
||||
|
||||
packages:
|
||||
|
||||
registry.npmmirror.com/@algolia/autocomplete-core@1.9.3(algoliasearch@4.19.1):
|
||||
registry.npmmirror.com/@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.7.0):
|
||||
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz}
|
||||
id: registry.npmmirror.com/@algolia/autocomplete-core/1.9.3
|
||||
name: '@algolia/autocomplete-core'
|
||||
version: 1.9.3
|
||||
dependencies:
|
||||
'@algolia/autocomplete-plugin-algolia-insights': registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-plugin-algolia-insights': registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.7.0)
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- algoliasearch
|
||||
- search-insights
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(algoliasearch@4.19.1):
|
||||
registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.7.0):
|
||||
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz}
|
||||
id: registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/1.9.3
|
||||
name: '@algolia/autocomplete-plugin-algolia-insights'
|
||||
@@ -58,13 +62,14 @@ packages:
|
||||
peerDependencies:
|
||||
search-insights: '>= 1 < 3'
|
||||
dependencies:
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
|
||||
search-insights: registry.npmmirror.com/search-insights@2.7.0
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- algoliasearch
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@algolia/autocomplete-preset-algolia@1.9.3(algoliasearch@4.19.1):
|
||||
registry.npmmirror.com/@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1):
|
||||
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz}
|
||||
id: registry.npmmirror.com/@algolia/autocomplete-preset-algolia/1.9.3
|
||||
name: '@algolia/autocomplete-preset-algolia'
|
||||
@@ -73,11 +78,12 @@ packages:
|
||||
'@algolia/client-search': '>= 4.9.1 < 6'
|
||||
algoliasearch: '>= 4.9.1 < 6'
|
||||
dependencies:
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
|
||||
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.19.1
|
||||
algoliasearch: registry.npmmirror.com/algoliasearch@4.19.1
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(algoliasearch@4.19.1):
|
||||
registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1):
|
||||
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz}
|
||||
id: registry.npmmirror.com/@algolia/autocomplete-shared/1.9.3
|
||||
name: '@algolia/autocomplete-shared'
|
||||
@@ -86,6 +92,7 @@ packages:
|
||||
'@algolia/client-search': '>= 4.9.1 < 6'
|
||||
algoliasearch: '>= 4.9.1 < 6'
|
||||
dependencies:
|
||||
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.19.1
|
||||
algoliasearch: registry.npmmirror.com/algoliasearch@4.19.1
|
||||
dev: false
|
||||
|
||||
@@ -1983,7 +1990,7 @@ packages:
|
||||
version: 3.5.1
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docsearch/react@3.5.1(react-dom@17.0.2)(react@17.0.2):
|
||||
registry.npmmirror.com/@docsearch/react@3.5.1(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0):
|
||||
resolution: {integrity: sha512-t5mEODdLzZq4PTFAm/dvqcvZFdPDMdfPE5rJS5SC8OUq9mPzxEy6b+9THIqNM9P0ocCb4UC5jqBrxKclnuIbzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docsearch/react/-/react-3.5.1.tgz}
|
||||
id: registry.npmmirror.com/@docsearch/react/3.5.1
|
||||
name: '@docsearch/react'
|
||||
@@ -2000,8 +2007,8 @@ packages:
|
||||
react-dom:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@algolia/autocomplete-core': registry.npmmirror.com/@algolia/autocomplete-core@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-preset-algolia': registry.npmmirror.com/@algolia/autocomplete-preset-algolia@1.9.3(algoliasearch@4.19.1)
|
||||
'@algolia/autocomplete-core': registry.npmmirror.com/@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.7.0)
|
||||
'@algolia/autocomplete-preset-algolia': registry.npmmirror.com/@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
|
||||
'@docsearch/css': registry.npmmirror.com/@docsearch/css@3.5.1
|
||||
algoliasearch: registry.npmmirror.com/algoliasearch@4.19.1
|
||||
react: registry.npmmirror.com/react@17.0.2
|
||||
@@ -2114,109 +2121,6 @@ packages:
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/core@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4):
|
||||
resolution: {integrity: sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/core/-/core-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/core/2.4.1
|
||||
name: '@docusaurus/core'
|
||||
version: 2.4.1
|
||||
engines: {node: '>=16.14'}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@babel/core': registry.npmmirror.com/@babel/core@7.22.9
|
||||
'@babel/generator': registry.npmmirror.com/@babel/generator@7.22.9
|
||||
'@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9)
|
||||
'@babel/plugin-transform-runtime': registry.npmmirror.com/@babel/plugin-transform-runtime@7.22.9(@babel/core@7.22.9)
|
||||
'@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.9(@babel/core@7.22.9)
|
||||
'@babel/preset-react': registry.npmmirror.com/@babel/preset-react@7.22.5(@babel/core@7.22.9)
|
||||
'@babel/preset-typescript': registry.npmmirror.com/@babel/preset-typescript@7.22.5(@babel/core@7.22.9)
|
||||
'@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.6
|
||||
'@babel/runtime-corejs3': registry.npmmirror.com/@babel/runtime-corejs3@7.22.6
|
||||
'@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.8
|
||||
'@docusaurus/cssnano-preset': registry.npmmirror.com/@docusaurus/cssnano-preset@2.4.1
|
||||
'@docusaurus/logger': registry.npmmirror.com/@docusaurus/logger@2.4.1
|
||||
'@docusaurus/mdx-loader': registry.npmmirror.com/@docusaurus/mdx-loader@2.4.1(react-dom@17.0.2)(react@17.0.2)
|
||||
'@docusaurus/react-loadable': registry.npmmirror.com/@docusaurus/react-loadable@5.5.2(react@17.0.2)
|
||||
'@docusaurus/utils': registry.npmmirror.com/@docusaurus/utils@2.4.1
|
||||
'@docusaurus/utils-common': registry.npmmirror.com/@docusaurus/utils-common@2.4.1
|
||||
'@docusaurus/utils-validation': registry.npmmirror.com/@docusaurus/utils-validation@2.4.1
|
||||
'@slorber/static-site-generator-webpack-plugin': registry.npmmirror.com/@slorber/static-site-generator-webpack-plugin@4.0.7
|
||||
'@svgr/webpack': registry.npmmirror.com/@svgr/webpack@6.5.1
|
||||
autoprefixer: registry.npmmirror.com/autoprefixer@10.4.14(postcss@8.4.27)
|
||||
babel-loader: registry.npmmirror.com/babel-loader@8.3.0(@babel/core@7.22.9)(webpack@5.88.2)
|
||||
babel-plugin-dynamic-import-node: registry.npmmirror.com/babel-plugin-dynamic-import-node@2.3.3
|
||||
boxen: registry.npmmirror.com/boxen@6.2.1
|
||||
chalk: registry.npmmirror.com/chalk@4.1.2
|
||||
chokidar: registry.npmmirror.com/chokidar@3.5.3
|
||||
clean-css: registry.npmmirror.com/clean-css@5.3.2
|
||||
cli-table3: registry.npmmirror.com/cli-table3@0.6.3
|
||||
combine-promises: registry.npmmirror.com/combine-promises@1.1.0
|
||||
commander: registry.npmmirror.com/commander@5.1.0
|
||||
copy-webpack-plugin: registry.npmmirror.com/copy-webpack-plugin@11.0.0(webpack@5.88.2)
|
||||
core-js: registry.npmmirror.com/core-js@3.31.1
|
||||
css-loader: registry.npmmirror.com/css-loader@6.8.1(webpack@5.88.2)
|
||||
css-minimizer-webpack-plugin: registry.npmmirror.com/css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.88.2)
|
||||
cssnano: registry.npmmirror.com/cssnano@5.1.15(postcss@8.4.27)
|
||||
del: registry.npmmirror.com/del@6.1.1
|
||||
detect-port: registry.npmmirror.com/detect-port@1.5.1
|
||||
escape-html: registry.npmmirror.com/escape-html@1.0.3
|
||||
eta: registry.npmmirror.com/eta@2.2.0
|
||||
file-loader: registry.npmmirror.com/file-loader@6.2.0(webpack@5.88.2)
|
||||
fs-extra: registry.npmmirror.com/fs-extra@10.1.0
|
||||
html-minifier-terser: registry.npmmirror.com/html-minifier-terser@6.1.0
|
||||
html-tags: registry.npmmirror.com/html-tags@3.3.1
|
||||
html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin@5.5.3(webpack@5.88.2)
|
||||
import-fresh: registry.npmmirror.com/import-fresh@3.3.0
|
||||
leven: registry.npmmirror.com/leven@3.1.0
|
||||
lodash: registry.npmmirror.com/lodash@4.17.21
|
||||
mini-css-extract-plugin: registry.npmmirror.com/mini-css-extract-plugin@2.7.6(webpack@5.88.2)
|
||||
postcss: registry.npmmirror.com/postcss@8.4.27
|
||||
postcss-loader: registry.npmmirror.com/postcss-loader@7.3.3(postcss@8.4.27)(webpack@5.88.2)
|
||||
prompts: registry.npmmirror.com/prompts@2.4.2
|
||||
react: registry.npmmirror.com/react@17.0.2
|
||||
react-dev-utils: registry.npmmirror.com/react-dev-utils@12.0.1(typescript@4.7.4)(webpack@5.88.2)
|
||||
react-dom: registry.npmmirror.com/react-dom@17.0.2(react@17.0.2)
|
||||
react-helmet-async: registry.npmmirror.com/react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2)
|
||||
react-loadable: registry.npmmirror.com/@docusaurus/react-loadable@5.5.2(react@17.0.2)
|
||||
react-loadable-ssr-addon-v5-slorber: registry.npmmirror.com/react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.88.2)
|
||||
react-router: registry.npmmirror.com/react-router@5.3.4(react@17.0.2)
|
||||
react-router-config: registry.npmmirror.com/react-router-config@5.1.1(react-router@5.3.4)(react@17.0.2)
|
||||
react-router-dom: registry.npmmirror.com/react-router-dom@5.3.4(react@17.0.2)
|
||||
rtl-detect: registry.npmmirror.com/rtl-detect@1.0.4
|
||||
semver: registry.npmmirror.com/semver@7.5.4
|
||||
serve-handler: registry.npmmirror.com/serve-handler@6.1.5
|
||||
shelljs: registry.npmmirror.com/shelljs@0.8.5
|
||||
terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.88.2)
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
update-notifier: registry.npmmirror.com/update-notifier@5.1.0
|
||||
url-loader: registry.npmmirror.com/url-loader@4.1.1(file-loader@6.2.0)(webpack@5.88.2)
|
||||
wait-on: registry.npmmirror.com/wait-on@6.0.1
|
||||
webpack: registry.npmmirror.com/webpack@5.88.2
|
||||
webpack-bundle-analyzer: registry.npmmirror.com/webpack-bundle-analyzer@4.9.0
|
||||
webpack-dev-server: registry.npmmirror.com/webpack-dev-server@4.15.1(webpack@5.88.2)
|
||||
webpack-merge: registry.npmmirror.com/webpack-merge@5.9.0
|
||||
webpackbar: registry.npmmirror.com/webpackbar@5.0.2(webpack@5.88.2)
|
||||
transitivePeerDependencies:
|
||||
- '@docusaurus/types'
|
||||
- '@parcel/css'
|
||||
- '@swc/core'
|
||||
- '@swc/css'
|
||||
- bufferutil
|
||||
- csso
|
||||
- debug
|
||||
- esbuild
|
||||
- eslint
|
||||
- lightningcss
|
||||
- supports-color
|
||||
- typescript
|
||||
- uglify-js
|
||||
- utf-8-validate
|
||||
- vue-template-compiler
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/cssnano-preset@2.4.1:
|
||||
resolution: {integrity: sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.1.tgz}
|
||||
name: '@docusaurus/cssnano-preset'
|
||||
@@ -2277,44 +2181,6 @@ packages:
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/mdx-loader@2.4.1(react-dom@17.0.2)(react@17.0.2):
|
||||
resolution: {integrity: sha512-4KhUhEavteIAmbBj7LVFnrVYDiU51H5YWW1zY6SmBSte/YLhDutztLTBE0PQl1Grux1jzUJeaSvAzHpTn6JJDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/mdx-loader/-/mdx-loader-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/mdx-loader/2.4.1
|
||||
name: '@docusaurus/mdx-loader'
|
||||
version: 2.4.1
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@babel/parser': registry.npmmirror.com/@babel/parser@7.22.7
|
||||
'@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.8
|
||||
'@docusaurus/logger': registry.npmmirror.com/@docusaurus/logger@2.4.1
|
||||
'@docusaurus/utils': registry.npmmirror.com/@docusaurus/utils@2.4.1
|
||||
'@mdx-js/mdx': registry.npmmirror.com/@mdx-js/mdx@1.6.22
|
||||
escape-html: registry.npmmirror.com/escape-html@1.0.3
|
||||
file-loader: registry.npmmirror.com/file-loader@6.2.0(webpack@5.88.2)
|
||||
fs-extra: registry.npmmirror.com/fs-extra@10.1.0
|
||||
image-size: registry.npmmirror.com/image-size@1.0.2
|
||||
mdast-util-to-string: registry.npmmirror.com/mdast-util-to-string@2.0.0
|
||||
react: registry.npmmirror.com/react@17.0.2
|
||||
react-dom: registry.npmmirror.com/react-dom@17.0.2(react@17.0.2)
|
||||
remark-emoji: registry.npmmirror.com/remark-emoji@2.2.0
|
||||
stringify-object: registry.npmmirror.com/stringify-object@3.3.0
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
unified: registry.npmmirror.com/unified@9.2.2
|
||||
unist-util-visit: registry.npmmirror.com/unist-util-visit@2.0.3
|
||||
url-loader: registry.npmmirror.com/url-loader@4.1.1(file-loader@6.2.0)(webpack@5.88.2)
|
||||
webpack: registry.npmmirror.com/webpack@5.88.2
|
||||
transitivePeerDependencies:
|
||||
- '@docusaurus/types'
|
||||
- '@swc/core'
|
||||
- esbuild
|
||||
- supports-color
|
||||
- uglify-js
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/module-type-aliases@2.4.1(react-dom@17.0.2)(react@17.0.2):
|
||||
resolution: {integrity: sha512-gLBuIFM8Dp2XOCWffUDSjtxY7jQgKvYujt7Mx5s4FCTfoL5dN1EVbnrn+O2Wvh8b0a77D57qoIDY7ghgmatR1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/module-type-aliases/2.4.1
|
||||
@@ -2649,7 +2515,7 @@ packages:
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/preset-classic@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4):
|
||||
registry.npmmirror.com/@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0)(typescript@4.7.4):
|
||||
resolution: {integrity: sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/preset-classic/-/preset-classic-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/preset-classic/2.4.1
|
||||
name: '@docusaurus/preset-classic'
|
||||
@@ -2670,7 +2536,7 @@ packages:
|
||||
'@docusaurus/plugin-sitemap': registry.npmmirror.com/@docusaurus/plugin-sitemap@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/theme-classic': registry.npmmirror.com/@docusaurus/theme-classic@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/theme-common': registry.npmmirror.com/@docusaurus/theme-common@2.4.1(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/theme-search-algolia': registry.npmmirror.com/@docusaurus/theme-search-algolia@2.4.1(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/theme-search-algolia': registry.npmmirror.com/@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.19.1)(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0)(typescript@4.7.4)
|
||||
'@docusaurus/types': registry.npmmirror.com/@docusaurus/types@2.4.1(react-dom@17.0.2)(react@17.0.2)
|
||||
react: registry.npmmirror.com/react@17.0.2
|
||||
react-dom: registry.npmmirror.com/react-dom@17.0.2(react@17.0.2)
|
||||
@@ -2810,7 +2676,7 @@ packages:
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/theme-search-algolia@2.4.1(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4):
|
||||
registry.npmmirror.com/@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.19.1)(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0)(typescript@4.7.4):
|
||||
resolution: {integrity: sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/theme-search-algolia/2.4.1
|
||||
name: '@docusaurus/theme-search-algolia'
|
||||
@@ -2820,7 +2686,7 @@ packages:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docsearch/react': registry.npmmirror.com/@docsearch/react@3.5.1(react-dom@17.0.2)(react@17.0.2)
|
||||
'@docsearch/react': registry.npmmirror.com/@docsearch/react@3.5.1(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.7.0)
|
||||
'@docusaurus/core': registry.npmmirror.com/@docusaurus/core@2.4.1(@docusaurus/types@2.4.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
'@docusaurus/logger': registry.npmmirror.com/@docusaurus/logger@2.4.1
|
||||
'@docusaurus/plugin-content-docs': registry.npmmirror.com/@docusaurus/plugin-content-docs@2.4.1(react-dom@17.0.2)(react@17.0.2)(typescript@4.7.4)
|
||||
@@ -2895,20 +2761,6 @@ packages:
|
||||
- uglify-js
|
||||
- webpack-cli
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils-common@2.4.1:
|
||||
resolution: {integrity: sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils-common/-/utils-common-2.4.1.tgz}
|
||||
name: '@docusaurus/utils-common'
|
||||
version: 2.4.1
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
'@docusaurus/types': '*'
|
||||
peerDependenciesMeta:
|
||||
'@docusaurus/types':
|
||||
optional: true
|
||||
dependencies:
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils-common@2.4.1(@docusaurus/types@2.4.1):
|
||||
resolution: {integrity: sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils-common/-/utils-common-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/utils-common/2.4.1
|
||||
@@ -2925,26 +2777,6 @@ packages:
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils-validation@2.4.1:
|
||||
resolution: {integrity: sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils-validation/-/utils-validation-2.4.1.tgz}
|
||||
name: '@docusaurus/utils-validation'
|
||||
version: 2.4.1
|
||||
engines: {node: '>=16.14'}
|
||||
dependencies:
|
||||
'@docusaurus/logger': registry.npmmirror.com/@docusaurus/logger@2.4.1
|
||||
'@docusaurus/utils': registry.npmmirror.com/@docusaurus/utils@2.4.1
|
||||
joi: registry.npmmirror.com/joi@17.9.2
|
||||
js-yaml: registry.npmmirror.com/js-yaml@4.1.0
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
transitivePeerDependencies:
|
||||
- '@docusaurus/types'
|
||||
- '@swc/core'
|
||||
- esbuild
|
||||
- supports-color
|
||||
- uglify-js
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils-validation@2.4.1(@docusaurus/types@2.4.1):
|
||||
resolution: {integrity: sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils-validation/-/utils-validation-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/utils-validation/2.4.1
|
||||
@@ -2966,41 +2798,6 @@ packages:
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils@2.4.1:
|
||||
resolution: {integrity: sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils/-/utils-2.4.1.tgz}
|
||||
name: '@docusaurus/utils'
|
||||
version: 2.4.1
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
'@docusaurus/types': '*'
|
||||
peerDependenciesMeta:
|
||||
'@docusaurus/types':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@docusaurus/logger': registry.npmmirror.com/@docusaurus/logger@2.4.1
|
||||
'@svgr/webpack': registry.npmmirror.com/@svgr/webpack@6.5.1
|
||||
escape-string-regexp: registry.npmmirror.com/escape-string-regexp@4.0.0
|
||||
file-loader: registry.npmmirror.com/file-loader@6.2.0(webpack@5.88.2)
|
||||
fs-extra: registry.npmmirror.com/fs-extra@10.1.0
|
||||
github-slugger: registry.npmmirror.com/github-slugger@1.5.0
|
||||
globby: registry.npmmirror.com/globby@11.1.0
|
||||
gray-matter: registry.npmmirror.com/gray-matter@4.0.3
|
||||
js-yaml: registry.npmmirror.com/js-yaml@4.1.0
|
||||
lodash: registry.npmmirror.com/lodash@4.17.21
|
||||
micromatch: registry.npmmirror.com/micromatch@4.0.5
|
||||
resolve-pathname: registry.npmmirror.com/resolve-pathname@3.0.0
|
||||
shelljs: registry.npmmirror.com/shelljs@0.8.5
|
||||
tslib: registry.npmmirror.com/tslib@2.6.1
|
||||
url-loader: registry.npmmirror.com/url-loader@4.1.1(file-loader@6.2.0)(webpack@5.88.2)
|
||||
webpack: registry.npmmirror.com/webpack@5.88.2
|
||||
transitivePeerDependencies:
|
||||
- '@swc/core'
|
||||
- esbuild
|
||||
- supports-color
|
||||
- uglify-js
|
||||
- webpack-cli
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/@docusaurus/utils@2.4.1(@docusaurus/types@2.4.1):
|
||||
resolution: {integrity: sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docusaurus/utils/-/utils-2.4.1.tgz}
|
||||
id: registry.npmmirror.com/@docusaurus/utils/2.4.1
|
||||
@@ -3972,10 +3769,13 @@ packages:
|
||||
indent-string: registry.npmmirror.com/indent-string@4.0.0
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/ajv-formats@2.1.1:
|
||||
registry.npmmirror.com/ajv-formats@2.1.1(ajv@8.12.0):
|
||||
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv-formats/-/ajv-formats-2.1.1.tgz}
|
||||
id: registry.npmmirror.com/ajv-formats/2.1.1
|
||||
name: ajv-formats
|
||||
version: 2.1.1
|
||||
peerDependencies:
|
||||
ajv: ^8.0.0
|
||||
peerDependenciesMeta:
|
||||
ajv:
|
||||
optional: true
|
||||
@@ -5795,7 +5595,6 @@ packages:
|
||||
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz}
|
||||
name: fast-deep-equal
|
||||
version: 3.1.3
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/fast-glob@3.3.1:
|
||||
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz}
|
||||
@@ -8712,7 +8511,6 @@ packages:
|
||||
name: punycode
|
||||
version: 2.3.0
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/pupa@2.1.1:
|
||||
resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pupa/-/pupa-2.1.1.tgz}
|
||||
@@ -9414,10 +9212,17 @@ packages:
|
||||
dependencies:
|
||||
'@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.12
|
||||
ajv: registry.npmmirror.com/ajv@8.12.0
|
||||
ajv-formats: registry.npmmirror.com/ajv-formats@2.1.1
|
||||
ajv-formats: registry.npmmirror.com/ajv-formats@2.1.1(ajv@8.12.0)
|
||||
ajv-keywords: registry.npmmirror.com/ajv-keywords@5.1.0(ajv@8.12.0)
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/search-insights@2.7.0:
|
||||
resolution: {integrity: sha512-GLbVaGgzYEKMvuJbHRhLi1qoBFnjXZGZ6l4LxOYPCp4lI2jDRB3jPU9/XNhMwv6kvnA9slTreq6pvK+b3o3aqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/search-insights/-/search-insights-2.7.0.tgz}
|
||||
name: search-insights
|
||||
version: 2.7.0
|
||||
engines: {node: '>=8.16.0'}
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/section-matter@1.0.0:
|
||||
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/section-matter/-/section-matter-1.0.0.tgz}
|
||||
name: section-matter
|
||||
@@ -10356,7 +10161,6 @@ packages:
|
||||
version: 4.4.1
|
||||
dependencies:
|
||||
punycode: registry.npmmirror.com/punycode@2.3.0
|
||||
dev: false
|
||||
|
||||
registry.npmmirror.com/url-loader@4.1.1(file-loader@6.2.0)(webpack@5.88.2):
|
||||
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/url-loader/-/url-loader-4.1.1.tgz}
|
||||
@@ -10913,7 +10717,3 @@ packages:
|
||||
name: zwitch
|
||||
version: 1.0.5
|
||||
dev: false
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
@@ -26,6 +26,19 @@ const sidebars = {
|
||||
]
|
||||
},
|
||||
'develop/dev',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Data Config',
|
||||
link: {
|
||||
type: 'generated-index'
|
||||
},
|
||||
items: [
|
||||
{
|
||||
type: 'autogenerated',
|
||||
dirName: 'develop/data_config'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Deploy',
|
||||
|
Reference in New Issue
Block a user