mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-03-13 08:28:13 -04:00
✨ Feature: add video,text file and markdown file preview
This commit is contained in:
parent
893e33d591
commit
b3ce9b9543
@ -20,7 +20,8 @@ module.exports = {
|
|||||||
'no-async-promise-executor': 'off',
|
'no-async-promise-executor': 'off',
|
||||||
'no-unused-vars': 'off',
|
'no-unused-vars': 'off',
|
||||||
'@typescript-eslint/no-unused-vars': 'error',
|
'@typescript-eslint/no-unused-vars': 'error',
|
||||||
'@typescript-eslint/indent': ['error', 2]
|
'@typescript-eslint/indent': ['error', 2],
|
||||||
|
'vue/no-v-html': 'off'
|
||||||
},
|
},
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
parser: '@typescript-eslint/parser'
|
parser: '@typescript-eslint/parser'
|
||||||
|
@ -19,7 +19,8 @@
|
|||||||
|
|
||||||
- 保留了PicGo的所有功能,兼容已有的PicGo插件系统,包括和typora、obsidian等的搭配
|
- 保留了PicGo的所有功能,兼容已有的PicGo插件系统,包括和typora、obsidian等的搭配
|
||||||
- 相册中可同步删除云端图片
|
- 相册中可同步删除云端图片
|
||||||
- 支持管理所有图床,可以在线进行云端目录查看、文件搜索、批量上传、批量下载、删除文件和图片预览等
|
- 支持管理所有图床,可以在线进行云端目录查看、文件搜索、批量上传、批量下载、删除文件等
|
||||||
|
- 支持预览多种格式的文件,包括图片、视频、纯文本文件和markdown文件等,具体支持的格式请参考[支持的文件格式列表](https://github.com/Kuingsmile/PicList/supported_format.md)
|
||||||
- 管理界面使用内置数据库缓存目录,加速目录加载速度
|
- 管理界面使用内置数据库缓存目录,加速目录加载速度
|
||||||
- 对于私有存储桶等支持复制预签名链接进行分享
|
- 对于私有存储桶等支持复制预签名链接进行分享
|
||||||
- 优化了PicGo的界面,解锁了窗口大小限制,同时美化了部分界面布局
|
- 优化了PicGo的界面,解锁了窗口大小限制,同时美化了部分界面布局
|
||||||
|
@ -16,18 +16,21 @@
|
|||||||
"postuninstall": "electron-builder install-app-deps",
|
"postuninstall": "electron-builder install-app-deps",
|
||||||
"release": "vue-cli-service electron:build --publish always",
|
"release": "vue-cli-service electron:build --publish always",
|
||||||
"upload-dist": "node ./scripts/upload-dist-to-r2.js",
|
"upload-dist": "node ./scripts/upload-dist-to-r2.js",
|
||||||
"link": "node ./scripts/cos-link.js"
|
"link": "node ./scripts/link.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.272.0",
|
"@aws-sdk/client-s3": "^3.272.0",
|
||||||
"@aws-sdk/lib-storage": "^3.272.0",
|
"@aws-sdk/lib-storage": "^3.272.0",
|
||||||
"@aws-sdk/s3-request-presigner": "^3.272.0",
|
"@aws-sdk/s3-request-presigner": "^3.272.0",
|
||||||
"@element-plus/icons-vue": "^2.0.10",
|
"@element-plus/icons-vue": "^2.0.10",
|
||||||
|
"@highlightjs/vue-plugin": "^2.1.0",
|
||||||
"@imengyu/vue3-context-menu": "^1.2.2",
|
"@imengyu/vue3-context-menu": "^1.2.2",
|
||||||
"@octokit/rest": "^19.0.7",
|
"@octokit/rest": "^19.0.7",
|
||||||
"@picgo/i18n": "^1.0.0",
|
"@picgo/i18n": "^1.0.0",
|
||||||
"@picgo/store": "^2.0.4",
|
"@picgo/store": "^2.0.4",
|
||||||
|
"@types/marked": "^4.0.8",
|
||||||
"@types/mime-types": "^2.1.1",
|
"@types/mime-types": "^2.1.1",
|
||||||
|
"@videojs-player/vue": "^1.0.0",
|
||||||
"ali-oss": "^6.17.1",
|
"ali-oss": "^6.17.1",
|
||||||
"aws-sdk": "^2.1317.0",
|
"aws-sdk": "^2.1317.0",
|
||||||
"axios": "^1.3.2",
|
"axios": "^1.3.2",
|
||||||
@ -41,10 +44,12 @@
|
|||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"fs-extra": "^11.1.0",
|
"fs-extra": "^11.1.0",
|
||||||
"got": "^12.5.3",
|
"got": "^12.5.3",
|
||||||
|
"highlight.js": "^11.7.0",
|
||||||
"hpagent": "^1.2.0",
|
"hpagent": "^1.2.0",
|
||||||
"keycode": "^2.2.0",
|
"keycode": "^2.2.0",
|
||||||
"lodash-id": "^0.14.0",
|
"lodash-id": "^0.14.0",
|
||||||
"lowdb": "^1.0.0",
|
"lowdb": "^1.0.0",
|
||||||
|
"marked": "^4.2.12",
|
||||||
"mime-types": "^2.1.35",
|
"mime-types": "^2.1.35",
|
||||||
"mitt": "^3.0.0",
|
"mitt": "^3.0.0",
|
||||||
"piclist": "^0.0.8",
|
"piclist": "^0.0.8",
|
||||||
@ -55,10 +60,12 @@
|
|||||||
"shell-path": "2.1.0",
|
"shell-path": "2.1.0",
|
||||||
"upyun": "^3.4.6",
|
"upyun": "^3.4.6",
|
||||||
"uuid": "^9.0.0",
|
"uuid": "^9.0.0",
|
||||||
|
"video.js": "^8.0.4",
|
||||||
"vue": "^3.2.47",
|
"vue": "^3.2.47",
|
||||||
"vue-router": "^4.1.6",
|
"vue-router": "^4.1.6",
|
||||||
"vue3-lazyload": "^0.3.6",
|
"vue3-lazyload": "^0.3.6",
|
||||||
"vue3-photo-preview": "^0.2.9",
|
"vue3-photo-preview": "^0.2.9",
|
||||||
|
"webdav": "^5.0.0-r3",
|
||||||
"write-file-atomic": "^4.0.1"
|
"write-file-atomic": "^4.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -18,6 +18,11 @@ import vue3PhotoPreview from 'vue3-photo-preview'
|
|||||||
import 'vue3-photo-preview/dist/index.css'
|
import 'vue3-photo-preview/dist/index.css'
|
||||||
import { createPinia } from 'pinia'
|
import { createPinia } from 'pinia'
|
||||||
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
||||||
|
import 'highlight.js/styles/atom-one-dark.css'
|
||||||
|
import hljsVuePlugin from '@highlightjs/vue-plugin'
|
||||||
|
import hljsCommon from 'highlight.js/lib/common'
|
||||||
|
import VueVideoPlayer from '@videojs-player/vue'
|
||||||
|
import 'video.js/dist/video-js.css'
|
||||||
|
|
||||||
webFrame.setVisualZoomLevelLimits(1, 1)
|
webFrame.setVisualZoomLevelLimits(1, 1)
|
||||||
|
|
||||||
@ -60,6 +65,9 @@ app.use(store)
|
|||||||
app.use(vue3PhotoPreview)
|
app.use(vue3PhotoPreview)
|
||||||
app.use(pinia)
|
app.use(pinia)
|
||||||
app.use(ContextMenu)
|
app.use(ContextMenu)
|
||||||
|
console.log(hljsCommon.highlightAuto('<h1>Highlight.js has been registered successfully!</h1>').value)
|
||||||
|
app.use(hljsVuePlugin)
|
||||||
|
app.use(VueVideoPlayer)
|
||||||
app.mount('#app')
|
app.mount('#app')
|
||||||
|
|
||||||
initTalkingData()
|
initTalkingData()
|
||||||
|
@ -6,6 +6,7 @@ import SmmsApi from './smms'
|
|||||||
import GithubApi from './github'
|
import GithubApi from './github'
|
||||||
import ImgurApi from './imgur'
|
import ImgurApi from './imgur'
|
||||||
import S3plistApi from './s3plist'
|
import S3plistApi from './s3plist'
|
||||||
|
import WebdavplistApi from './webdavplist'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
TcyunApi,
|
TcyunApi,
|
||||||
@ -15,5 +16,6 @@ export default {
|
|||||||
SmmsApi,
|
SmmsApi,
|
||||||
GithubApi,
|
GithubApi,
|
||||||
ImgurApi,
|
ImgurApi,
|
||||||
S3plistApi
|
S3plistApi,
|
||||||
|
WebdavplistApi
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ import { getSignedUrl } from '@aws-sdk/s3-request-presigner'
|
|||||||
import https from 'https'
|
import https from 'https'
|
||||||
import http from 'http'
|
import http from 'http'
|
||||||
import { ManageLogger } from '../utils/logger'
|
import { ManageLogger } from '../utils/logger'
|
||||||
import { formatError, getAgent, getFileMimeType, gotDownload } from '../utils/common'
|
import { formatEndpoint, formatError, getAgent, getFileMimeType, gotDownload } from '../utils/common'
|
||||||
import { isImage } from '@/manage/utils/common'
|
import { isImage } from '@/manage/utils/common'
|
||||||
import { HttpsProxyAgent, HttpProxyAgent } from 'hpagent'
|
import { HttpsProxyAgent, HttpProxyAgent } from 'hpagent'
|
||||||
import windowManager from 'apis/app/window/windowManager'
|
import windowManager from 'apis/app/window/windowManager'
|
||||||
@ -64,7 +64,7 @@ class S3plistApi {
|
|||||||
accessKeyId,
|
accessKeyId,
|
||||||
secretAccessKey
|
secretAccessKey
|
||||||
},
|
},
|
||||||
endpoint: endpoint ? this.formatEndpoint(endpoint, sslEnabled) : undefined,
|
endpoint: endpoint ? formatEndpoint(endpoint, sslEnabled) : undefined,
|
||||||
sslEnabled,
|
sslEnabled,
|
||||||
s3ForcePathStyle,
|
s3ForcePathStyle,
|
||||||
httpOptions: {
|
httpOptions: {
|
||||||
@ -75,9 +75,6 @@ class S3plistApi {
|
|||||||
this.agent = this.setAgent(proxy, sslEnabled)
|
this.agent = this.setAgent(proxy, sslEnabled)
|
||||||
}
|
}
|
||||||
|
|
||||||
formatEndpoint = (endpoint: string, sslEnabled: boolean): string =>
|
|
||||||
!/^https?:\/\//.test(endpoint) ? `${sslEnabled ? 'https' : 'http'}://${endpoint}` : endpoint
|
|
||||||
|
|
||||||
setAgent (proxy: string | undefined, sslEnabled: boolean) : HttpProxyAgent | HttpsProxyAgent | undefined {
|
setAgent (proxy: string | undefined, sslEnabled: boolean) : HttpProxyAgent | HttpsProxyAgent | undefined {
|
||||||
if (sslEnabled) {
|
if (sslEnabled) {
|
||||||
const agent = getAgent(proxy, true).https
|
const agent = getAgent(proxy, true).https
|
||||||
|
130
src/main/manage/apis/webdavplist.ts
Normal file
130
src/main/manage/apis/webdavplist.ts
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
import ManageLogger from '../utils/logger'
|
||||||
|
import { createClient, WebDAVClient, FileStat } from 'webdav'
|
||||||
|
import { formatError, formatEndpoint, getInnerAgent } from '../utils/common'
|
||||||
|
import { isImage } from '@/manage/utils/common'
|
||||||
|
import http from 'http'
|
||||||
|
import https from 'https'
|
||||||
|
import windowManager from 'apis/app/window/windowManager'
|
||||||
|
import { IWindowList } from '#/types/enum'
|
||||||
|
import { ipcMain, IpcMainEvent } from 'electron'
|
||||||
|
|
||||||
|
class WebdavplistApi {
|
||||||
|
endpoint: string
|
||||||
|
username: string
|
||||||
|
password: string
|
||||||
|
sslEnabled: boolean
|
||||||
|
proxy: string | undefined
|
||||||
|
logger: ManageLogger
|
||||||
|
agent: https.Agent | http.Agent
|
||||||
|
ctx: WebDAVClient
|
||||||
|
|
||||||
|
constructor (endpoint: string, username: string, password: string, sslEnabled: boolean, proxy: string | undefined, logger: ManageLogger) {
|
||||||
|
this.endpoint = formatEndpoint(endpoint, sslEnabled)
|
||||||
|
this.username = username
|
||||||
|
this.password = password
|
||||||
|
this.sslEnabled = sslEnabled
|
||||||
|
this.proxy = proxy
|
||||||
|
this.logger = logger
|
||||||
|
this.agent = getInnerAgent(proxy, sslEnabled).agent
|
||||||
|
this.ctx = createClient(
|
||||||
|
this.endpoint,
|
||||||
|
{
|
||||||
|
username: this.username,
|
||||||
|
password: this.password,
|
||||||
|
maxBodyLength: 4 * 1024 * 1024 * 1024,
|
||||||
|
maxContentLength: 4 * 1024 * 1024 * 1024,
|
||||||
|
httpsAgent: sslEnabled ? this.agent : undefined,
|
||||||
|
httpAgent: !sslEnabled ? this.agent : undefined
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
logParam = (error:any, method: string) =>
|
||||||
|
this.logger.error(formatError(error, { class: 'WebdavplistApi', method }))
|
||||||
|
|
||||||
|
formatFolder (item: FileStat, urlPrefix: string) {
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
key: item.filename.replace(/^\/+/, ''),
|
||||||
|
fileName: item.basename,
|
||||||
|
fileSize: 0,
|
||||||
|
Key: item.filename.replace(/^\/+/, ''),
|
||||||
|
formatedTime: '',
|
||||||
|
isDir: true,
|
||||||
|
checked: false,
|
||||||
|
isImage: false,
|
||||||
|
match: false,
|
||||||
|
url: `${urlPrefix}${item.filename}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
formatFile (item: FileStat, urlPrefix: string) {
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
key: item.filename.replace(/^\/+/, ''),
|
||||||
|
fileName: item.basename,
|
||||||
|
fileSize: item.size,
|
||||||
|
Key: item.filename.replace(/^\/+/, ''),
|
||||||
|
formatedTime: new Date(item.lastmod).toLocaleString(),
|
||||||
|
isDir: false,
|
||||||
|
checked: false,
|
||||||
|
match: false,
|
||||||
|
isImage: isImage(item.basename),
|
||||||
|
url: `${urlPrefix}${item.filename}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
isRequestSuccess = (code: number) => code >= 200 && code < 300
|
||||||
|
|
||||||
|
async getBucketListBackstage (configMap: IStringKeyMap): Promise<any> {
|
||||||
|
const window = windowManager.get(IWindowList.SETTING_WINDOW)!
|
||||||
|
const { prefix, customUrl, cancelToken } = configMap
|
||||||
|
const urlPrefix = customUrl || this.endpoint
|
||||||
|
const cancelTask = [false]
|
||||||
|
ipcMain.on('cancelLoadingFileList', (_evt: IpcMainEvent, token: string) => {
|
||||||
|
if (token === cancelToken) {
|
||||||
|
cancelTask[0] = true
|
||||||
|
ipcMain.removeAllListeners('cancelLoadingFileList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
let res = {} as any
|
||||||
|
const result = {
|
||||||
|
fullList: <any>[],
|
||||||
|
success: false,
|
||||||
|
finished: false
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
res = await this.ctx.getDirectoryContents(prefix, {
|
||||||
|
deep: false,
|
||||||
|
details: true
|
||||||
|
})
|
||||||
|
if (this.isRequestSuccess(res.status)) {
|
||||||
|
if (res.data && res.data.length) {
|
||||||
|
res.data.forEach((item: FileStat) => {
|
||||||
|
if (item.type === 'directory') {
|
||||||
|
result.fullList.push(this.formatFolder(item, urlPrefix))
|
||||||
|
} else {
|
||||||
|
result.fullList.push(this.formatFile(item, urlPrefix))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
result.finished = true
|
||||||
|
window.webContents.send('refreshFileTransferList', result)
|
||||||
|
ipcMain.removeAllListeners('cancelLoadingFileList')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
this.logParam(error, 'getBucketListBackstage')
|
||||||
|
result.finished = true
|
||||||
|
window.webContents.send('refreshFileTransferList', result)
|
||||||
|
ipcMain.removeAllListeners('cancelLoadingFileList')
|
||||||
|
}
|
||||||
|
result.success = true
|
||||||
|
result.finished = true
|
||||||
|
window.webContents.send('refreshFileTransferList', result)
|
||||||
|
ipcMain.removeAllListeners('cancelLoadingFileList')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default WebdavplistApi
|
@ -69,6 +69,8 @@ export class ManageApi extends EventEmitter implements ManageApiType {
|
|||||||
return new API.ImgurApi(this.currentPicBedConfig.imgurUserName, this.currentPicBedConfig.accessToken, this.currentPicBedConfig.proxy, this.logger)
|
return new API.ImgurApi(this.currentPicBedConfig.imgurUserName, this.currentPicBedConfig.accessToken, this.currentPicBedConfig.proxy, this.logger)
|
||||||
case 's3plist':
|
case 's3plist':
|
||||||
return new API.S3plistApi(this.currentPicBedConfig.accessKeyId, this.currentPicBedConfig.secretAccessKey, this.currentPicBedConfig.endpoint, this.currentPicBedConfig.sslEnabled, this.currentPicBedConfig.s3ForcePathStyle, this.currentPicBedConfig.proxy, this.logger)
|
return new API.S3plistApi(this.currentPicBedConfig.accessKeyId, this.currentPicBedConfig.secretAccessKey, this.currentPicBedConfig.endpoint, this.currentPicBedConfig.sslEnabled, this.currentPicBedConfig.s3ForcePathStyle, this.currentPicBedConfig.proxy, this.logger)
|
||||||
|
case 'webdavplist':
|
||||||
|
return new API.WebdavplistApi(this.currentPicBedConfig.endpoint, this.currentPicBedConfig.username, this.currentPicBedConfig.password, this.currentPicBedConfig.sslEnabled, this.currentPicBedConfig.proxy, this.logger)
|
||||||
default:
|
default:
|
||||||
return {} as any
|
return {} as any
|
||||||
}
|
}
|
||||||
@ -172,6 +174,12 @@ export class ManageApi extends EventEmitter implements ManageApiType {
|
|||||||
Location: 'smms',
|
Location: 'smms',
|
||||||
CreationDate: new Date().toISOString()
|
CreationDate: new Date().toISOString()
|
||||||
}]
|
}]
|
||||||
|
case 'webdavplist':
|
||||||
|
return [{
|
||||||
|
Name: 'webdav',
|
||||||
|
Location: 'webdav',
|
||||||
|
CreationDate: new Date().toISOString()
|
||||||
|
}]
|
||||||
default:
|
default:
|
||||||
console.log(param)
|
console.log(param)
|
||||||
return []
|
return []
|
||||||
@ -309,6 +317,7 @@ export class ManageApi extends EventEmitter implements ManageApiType {
|
|||||||
case 'github':
|
case 'github':
|
||||||
case 'imgur':
|
case 'imgur':
|
||||||
case 's3plist':
|
case 's3plist':
|
||||||
|
case 'webdavplist':
|
||||||
try {
|
try {
|
||||||
client = this.createClient() as any
|
client = this.createClient() as any
|
||||||
return await client.getBucketListBackstage(param!)
|
return await client.getBucketListBackstage(param!)
|
||||||
|
@ -14,8 +14,10 @@ import UpDownTaskQueue,
|
|||||||
downloadTaskSpecialStatus
|
downloadTaskSpecialStatus
|
||||||
} from '../datastore/upDownTaskQueue'
|
} from '../datastore/upDownTaskQueue'
|
||||||
import { ManageLogger } from '../utils/logger'
|
import { ManageLogger } from '../utils/logger'
|
||||||
import { formatHttpProxy } from '@/manage/utils/common'
|
import { formatHttpProxy, IHTTPProxy } from '@/manage/utils/common'
|
||||||
import { HttpsProxyAgent, HttpProxyAgent } from 'hpagent'
|
import { HttpsProxyAgent, HttpProxyAgent } from 'hpagent'
|
||||||
|
import http from 'http'
|
||||||
|
import https from 'https'
|
||||||
|
|
||||||
export const getFSFile = async (
|
export const getFSFile = async (
|
||||||
filePath: string,
|
filePath: string,
|
||||||
@ -244,6 +246,47 @@ export const getAgent = (proxy:any, https: boolean = true) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const getInnerAgent = (proxy: any, sslEnabled: boolean = true) => {
|
||||||
|
const formatProxy = formatHttpProxy(proxy, 'object') as IHTTPProxy
|
||||||
|
if (sslEnabled) {
|
||||||
|
return formatProxy
|
||||||
|
? {
|
||||||
|
agent: new https.Agent({
|
||||||
|
keepAlive: true,
|
||||||
|
keepAliveMsecs: 1000,
|
||||||
|
rejectUnauthorized: false,
|
||||||
|
scheduling: 'lifo' as 'lifo' | 'fifo' | undefined,
|
||||||
|
host: formatProxy.host,
|
||||||
|
port: formatProxy.port
|
||||||
|
})
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
agent: new https.Agent({
|
||||||
|
rejectUnauthorized: false,
|
||||||
|
keepAlive: true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return formatProxy
|
||||||
|
? {
|
||||||
|
agent: new http.Agent({
|
||||||
|
keepAlive: true,
|
||||||
|
keepAliveMsecs: 1000,
|
||||||
|
scheduling: 'lifo' as 'lifo' | 'fifo' | undefined,
|
||||||
|
host: formatProxy.host,
|
||||||
|
port: formatProxy.port
|
||||||
|
})
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
agent: new http.Agent({
|
||||||
|
keepAlive: true,
|
||||||
|
keepAliveMsecs: 1000,
|
||||||
|
scheduling: 'lifo' as 'lifo' | 'fifo' | undefined
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function getOptions (
|
export function getOptions (
|
||||||
method?: string,
|
method?: string,
|
||||||
headers?: IStringKeyMap,
|
headers?: IStringKeyMap,
|
||||||
@ -270,3 +313,10 @@ export function getOptions (
|
|||||||
})
|
})
|
||||||
return options
|
return options
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const formatEndpoint = (endpoint: string, sslEnabled: boolean): string =>
|
||||||
|
!/^https?:\/\//.test(endpoint)
|
||||||
|
? `${sslEnabled ? 'https' : 'http'}://${endpoint}`
|
||||||
|
: sslEnabled
|
||||||
|
? endpoint.replace('http://', 'https://')
|
||||||
|
: endpoint.replace('https://', 'http://')
|
||||||
|
BIN
src/renderer/manage/pages/assets/webdavplist.png
Normal file
BIN
src/renderer/manage/pages/assets/webdavplist.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 196 KiB |
@ -1,4 +1,4 @@
|
|||||||
/*
|
ea/*
|
||||||
*UI布局和部分样式代码参考了https://github.com/willnewii/qiniuClient
|
*UI布局和部分样式代码参考了https://github.com/willnewii/qiniuClient
|
||||||
*感谢作者@willnewii
|
*感谢作者@willnewii
|
||||||
*/
|
*/
|
||||||
@ -29,7 +29,7 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-input
|
<el-input
|
||||||
v-else-if="['aliyun', 'qiniu', 'tcyun', 's3plist'].includes(currentPicBedName)"
|
v-else-if="showCustomUrlInput"
|
||||||
v-model="currentCustomUrl"
|
v-model="currentCustomUrl"
|
||||||
placeholder="请输入自定义域名"
|
placeholder="请输入自定义域名"
|
||||||
style="width: 200px;"
|
style="width: 200px;"
|
||||||
@ -764,18 +764,97 @@ https://www.baidu.com/img/bd_logo1.png"
|
|||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
</el-drawer>
|
</el-drawer>
|
||||||
|
<el-dialog
|
||||||
|
v-model="isShowMarkDownDialog"
|
||||||
|
title="预览MD"
|
||||||
|
center
|
||||||
|
align-center
|
||||||
|
draggable
|
||||||
|
fullscreen
|
||||||
|
close-on-press-escape
|
||||||
|
show-close
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
style="-webkit-user-select: text"
|
||||||
|
v-html="markDownContent"
|
||||||
|
/>
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
:icon="Close"
|
||||||
|
size="large"
|
||||||
|
style="position: fixed;bottom: 10px;right: 15px"
|
||||||
|
circle
|
||||||
|
@click="() => {isShowMarkDownDialog = false}"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
<el-dialog
|
||||||
|
v-model="isShowTextFileDialog"
|
||||||
|
title="预览"
|
||||||
|
center
|
||||||
|
align-center
|
||||||
|
draggable
|
||||||
|
fullscreen
|
||||||
|
close-on-press-escape
|
||||||
|
show-close
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<highlightjs
|
||||||
|
style="-webkit-user-select: text;"
|
||||||
|
language="js"
|
||||||
|
:code="textfileContent"
|
||||||
|
/>
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
:icon="Close"
|
||||||
|
size="large"
|
||||||
|
style="position: fixed;bottom: 10px;right: 15px"
|
||||||
|
circle
|
||||||
|
@click="() => {isShowTextFileDialog = false}"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
<el-dialog
|
||||||
|
v-model="isShowVideoFileDialog"
|
||||||
|
title="播放"
|
||||||
|
center
|
||||||
|
align-center
|
||||||
|
draggable
|
||||||
|
fullscreen
|
||||||
|
close-on-press-escape
|
||||||
|
show-close
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<video-player
|
||||||
|
:src="videoFileUrl"
|
||||||
|
controls
|
||||||
|
:loop="true"
|
||||||
|
:volume="0.6"
|
||||||
|
:autoplay="true"
|
||||||
|
:width="1100"
|
||||||
|
:height="700"
|
||||||
|
/>
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
:icon="Close"
|
||||||
|
size="large"
|
||||||
|
style="position: fixed;bottom: 10px;right: 15px"
|
||||||
|
circle
|
||||||
|
@click="() => {isShowVideoFileDialog = false}"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="tsx" setup>
|
<script lang="tsx" setup>
|
||||||
import { ref, reactive, watch, onBeforeMount, computed, onBeforeUnmount } from 'vue'
|
import { ref, reactive, watch, onBeforeMount, computed, onBeforeUnmount } from 'vue'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
import { Folder, FolderAdd, Upload, CircleClose, Loading, CopyDocument, Edit, DocumentAdd, Link, Refresh, ArrowRight, HomeFilled, Document, Coin, Download, DeleteFilled, Sort, FolderOpened } from '@element-plus/icons-vue'
|
import { Close, Folder, FolderAdd, Upload, CircleClose, Loading, CopyDocument, Edit, DocumentAdd, Link, Refresh, ArrowRight, HomeFilled, Document, Coin, Download, DeleteFilled, Sort, FolderOpened } from '@element-plus/icons-vue'
|
||||||
import { useManageStore } from '../store/manageStore'
|
import { useManageStore } from '../store/manageStore'
|
||||||
import { renameFile, formatLink, formatFileName, getFileIconPath, formatFileSize, getExtension, isValidUrl } from '../utils/common'
|
import { renameFile, formatLink, formatFileName, getFileIconPath, formatFileSize, getExtension, isValidUrl } from '../utils/common'
|
||||||
import { ipcRenderer, clipboard, IpcRendererEvent } from 'electron'
|
import { ipcRenderer, clipboard, IpcRendererEvent } from 'electron'
|
||||||
import { fileCacheDbInstance } from '../store/bucketFileDb'
|
import { fileCacheDbInstance } from '../store/bucketFileDb'
|
||||||
import { trimPath } from '~/main/manage/utils/common'
|
import { trimPath } from '~/main/manage/utils/common'
|
||||||
|
import axios from 'axios'
|
||||||
import {
|
import {
|
||||||
ElMessage, ElMessageBox, ElNotification,
|
ElMessage, ElMessageBox, ElNotification,
|
||||||
ElButton,
|
ElButton,
|
||||||
@ -798,7 +877,9 @@ import path from 'path'
|
|||||||
import { IUploadTask, IDownloadTask } from '~/main/manage/datastore/upDownTaskQueue'
|
import { IUploadTask, IDownloadTask } from '~/main/manage/datastore/upDownTaskQueue'
|
||||||
import fs from 'fs-extra'
|
import fs from 'fs-extra'
|
||||||
import { getConfig, saveConfig } from '../utils/dataSender'
|
import { getConfig, saveConfig } from '../utils/dataSender'
|
||||||
|
import { marked } from 'marked'
|
||||||
|
import { textFileExt } from '../utils/textfile'
|
||||||
|
import { videoExt } from '../utils/videofile'
|
||||||
/*
|
/*
|
||||||
configMap:{
|
configMap:{
|
||||||
prefix: string, -> baseDir
|
prefix: string, -> baseDir
|
||||||
@ -871,12 +952,20 @@ const isLoadingUploadPanelFiles = ref(false)
|
|||||||
const tableData = reactive([] as any[])
|
const tableData = reactive([] as any[])
|
||||||
const customUrlList = ref([] as any[])
|
const customUrlList = ref([] as any[])
|
||||||
const currentCustomUrl = ref('')
|
const currentCustomUrl = ref('')
|
||||||
|
const isShowMarkDownDialog = ref(false)
|
||||||
|
const markDownContent = ref('')
|
||||||
|
const isShowTextFileDialog = ref(false)
|
||||||
|
const textfileContent = ref('')
|
||||||
|
const isShowVideoFileDialog = ref(false)
|
||||||
|
const videoFileUrl = ref('')
|
||||||
|
|
||||||
const showCustomUrlSelectList = computed(() => ['tcyun', 'aliyun', 'qiniu', 'github'].includes(currentPicBedName.value))
|
const showCustomUrlSelectList = computed(() => ['tcyun', 'aliyun', 'qiniu', 'github'].includes(currentPicBedName.value))
|
||||||
|
|
||||||
const showCreateNewFolder = computed(() => ['tcyun', 'aliyun', 'qiniu', 'upyun', 'github', 's3plist'].includes(currentPicBedName.value))
|
const showCustomUrlInput = computed(() => ['aliyun', 'qiniu', 'tcyun', 's3plist', 'webdavplist'].includes(currentPicBedName.value))
|
||||||
|
|
||||||
const showRenameFileIcon = computed(() => ['tcyun', 'aliyun', 'qiniu', 'upyun', 's3plist'].includes(currentPicBedName.value))
|
const showCreateNewFolder = computed(() => ['tcyun', 'aliyun', 'qiniu', 'upyun', 'github', 's3plist', 'webdavplist'].includes(currentPicBedName.value))
|
||||||
|
|
||||||
|
const showRenameFileIcon = computed(() => ['tcyun', 'aliyun', 'qiniu', 'upyun', 's3plist', 'webdavplist'].includes(currentPicBedName.value))
|
||||||
|
|
||||||
const showPresignedUrl = computed(() => ['tcyun', 'aliyun', 'qiniu', 'github', 's3plist'].includes(currentPicBedName.value))
|
const showPresignedUrl = computed(() => ['tcyun', 'aliyun', 'qiniu', 'github', 's3plist'].includes(currentPicBedName.value))
|
||||||
|
|
||||||
@ -1177,6 +1266,40 @@ async function handleClickFile (item: any) {
|
|||||||
showLoadingPage.value = true
|
showLoadingPage.value = true
|
||||||
await resetParam(false)
|
await resetParam(false)
|
||||||
showLoadingPage.value = false
|
showLoadingPage.value = false
|
||||||
|
} else if (item.fileName.endsWith('.md')) {
|
||||||
|
try {
|
||||||
|
ElMessage({
|
||||||
|
message: '开始获取文件',
|
||||||
|
duration: 300,
|
||||||
|
type: 'success'
|
||||||
|
})
|
||||||
|
const fileUrl = item.url
|
||||||
|
const res = await axios.get(fileUrl)
|
||||||
|
const content = res.data
|
||||||
|
markDownContent.value = marked(content)
|
||||||
|
isShowMarkDownDialog.value = true
|
||||||
|
} catch (error) {
|
||||||
|
ElMessage.error('获取文件内容失败')
|
||||||
|
}
|
||||||
|
} else if (textFileExt.includes(path.extname(item.fileName).toLowerCase()) ||
|
||||||
|
textFileExt.includes(item.fileName.toLowerCase())
|
||||||
|
) {
|
||||||
|
try {
|
||||||
|
ElMessage({
|
||||||
|
message: '开始获取文件',
|
||||||
|
duration: 300,
|
||||||
|
type: 'success'
|
||||||
|
})
|
||||||
|
const fileUrl = item.url
|
||||||
|
const res = await axios.get(fileUrl)
|
||||||
|
textfileContent.value = res.data
|
||||||
|
isShowTextFileDialog.value = true
|
||||||
|
} catch (error) {
|
||||||
|
ElMessage.error('获取文件内容失败')
|
||||||
|
}
|
||||||
|
} else if (videoExt.includes(path.extname(item.fileName).toLowerCase())) {
|
||||||
|
videoFileUrl.value = item.url
|
||||||
|
isShowVideoFileDialog.value = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1206,7 +1329,7 @@ async function handelChangeCustomUrl () {
|
|||||||
showLoadingPage.value = true
|
showLoadingPage.value = true
|
||||||
await resetParam(true)
|
await resetParam(true)
|
||||||
showLoadingPage.value = false
|
showLoadingPage.value = false
|
||||||
} else if (['aliyun', 'tcyun', 'qiniu', 's3plist'].includes(currentPicBedName.value)) {
|
} else if (['aliyun', 'tcyun', 'qiniu', 's3plist', 'webdavplist'].includes(currentPicBedName.value)) {
|
||||||
const currentConfigs = await getConfig<any>('picBed')
|
const currentConfigs = await getConfig<any>('picBed')
|
||||||
const currentConfig = currentConfigs[configMap.alias]
|
const currentConfig = currentConfigs[configMap.alias]
|
||||||
const currentTransformedConfig = JSON.parse(currentConfig.transformedConfig ?? '{}')
|
const currentTransformedConfig = JSON.parse(currentConfig.transformedConfig ?? '{}')
|
||||||
@ -1297,6 +1420,20 @@ async function initCustomUrlList () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
handelChangeCustomUrl()
|
handelChangeCustomUrl()
|
||||||
|
} else if (currentPicBedName.value === 'webdavplist') {
|
||||||
|
const currentConfigs = await getConfig<any>('picBed')
|
||||||
|
const currentConfig = currentConfigs[configMap.alias]
|
||||||
|
const currentTransformedConfig = JSON.parse(currentConfig.transformedConfig ?? '{}')
|
||||||
|
if (currentTransformedConfig[configMap.bucketName] && currentTransformedConfig[configMap.bucketName]?.customUrl) {
|
||||||
|
currentCustomUrl.value = currentTransformedConfig[configMap.bucketName].customUrl
|
||||||
|
} else {
|
||||||
|
let endpoint = manageStore.config.picBed[configMap.alias].endpoint
|
||||||
|
if (!/^https?:\/\//.test(endpoint)) {
|
||||||
|
endpoint = 'http://' + endpoint
|
||||||
|
}
|
||||||
|
currentCustomUrl.value = endpoint
|
||||||
|
}
|
||||||
|
handelChangeCustomUrl()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,6 +153,7 @@
|
|||||||
v-if="supportedPicBedList[item.icon].configOptions[option].type === 'string'"
|
v-if="supportedPicBedList[item.icon].configOptions[option].type === 'string'"
|
||||||
v-model.trim="configResult[item.icon + '.' + option]"
|
v-model.trim="configResult[item.icon + '.' + option]"
|
||||||
:placeholder="supportedPicBedList[item.icon].configOptions[option].placeholder"
|
:placeholder="supportedPicBedList[item.icon].configOptions[option].placeholder"
|
||||||
|
:disabled="!!supportedPicBedList[item.icon].configOptions[option].disabled"
|
||||||
/>
|
/>
|
||||||
<el-switch
|
<el-switch
|
||||||
v-else-if="supportedPicBedList[item.icon].configOptions[option].type === 'boolean'"
|
v-else-if="supportedPicBedList[item.icon].configOptions[option].type === 'boolean'"
|
||||||
|
@ -316,7 +316,8 @@ const urlMap : IStringKeyMap = {
|
|||||||
qiniu: 'https://portal.qiniu.com',
|
qiniu: 'https://portal.qiniu.com',
|
||||||
tcyun: 'https://console.cloud.tencent.com/cos',
|
tcyun: 'https://console.cloud.tencent.com/cos',
|
||||||
upyun: 'https://console.upyun.com',
|
upyun: 'https://console.upyun.com',
|
||||||
s3plist: 'https://aws.amazon.com/cn/s3/'
|
s3plist: 'https://aws.amazon.com/cn/s3/',
|
||||||
|
webdavplist: 'https://baike.baidu.com/item/WebDAV/4610909'
|
||||||
}
|
}
|
||||||
|
|
||||||
const openPicBedUrl = () => shell.openExternal(urlMap[currentPagePicBedConfig.picBedName])
|
const openPicBedUrl = () => shell.openExternal(urlMap[currentPagePicBedConfig.picBedName])
|
||||||
@ -442,7 +443,8 @@ const menuTitleMap:IStringKeyMap = {
|
|||||||
s3plist: '存储桶',
|
s3plist: '存储桶',
|
||||||
smms: '相册',
|
smms: '相册',
|
||||||
imgur: '相册',
|
imgur: '相册',
|
||||||
github: '仓库'
|
github: '仓库',
|
||||||
|
webdavplist: ''
|
||||||
}
|
}
|
||||||
|
|
||||||
const showNewIconList = ['aliyun', 'qiniu', 'tcyun']
|
const showNewIconList = ['aliyun', 'qiniu', 'tcyun']
|
||||||
|
@ -27,15 +27,16 @@ export class FileCacheDb extends Dexie {
|
|||||||
upyun: Table<IFileCache, string>
|
upyun: Table<IFileCache, string>
|
||||||
imgur: Table<IFileCache, string>
|
imgur: Table<IFileCache, string>
|
||||||
s3plist: Table<IFileCache, string>
|
s3plist: Table<IFileCache, string>
|
||||||
|
webdavplist: Table<IFileCache, string>
|
||||||
|
|
||||||
constructor () {
|
constructor () {
|
||||||
super('bucketFileDb')
|
super('bucketFileDb')
|
||||||
const tableNames = ['tcyun', 'aliyun', 'qiniu', 'github', 'smms', 'upyun', 'imgur', 's3plist']
|
const tableNames = ['tcyun', 'aliyun', 'qiniu', 'github', 'smms', 'upyun', 'imgur', 's3plist', 'webdavplist']
|
||||||
const tableNamesMap = tableNames.reduce((acc, cur) => {
|
const tableNamesMap = tableNames.reduce((acc, cur) => {
|
||||||
acc[cur] = '&key, value'
|
acc[cur] = '&key, value'
|
||||||
return acc
|
return acc
|
||||||
}, {} as IStringKeyMap)
|
}, {} as IStringKeyMap)
|
||||||
this.version(1).stores(tableNamesMap)
|
this.version(2).stores(tableNamesMap)
|
||||||
this.tcyun = this.table('tcyun')
|
this.tcyun = this.table('tcyun')
|
||||||
this.aliyun = this.table('aliyun')
|
this.aliyun = this.table('aliyun')
|
||||||
this.qiniu = this.table('qiniu')
|
this.qiniu = this.table('qiniu')
|
||||||
@ -44,6 +45,7 @@ export class FileCacheDb extends Dexie {
|
|||||||
this.upyun = this.table('upyun')
|
this.upyun = this.table('upyun')
|
||||||
this.imgur = this.table('imgur')
|
this.imgur = this.table('imgur')
|
||||||
this.s3plist = this.table('s3plist')
|
this.s3plist = this.table('s3plist')
|
||||||
|
this.webdavplist = this.table('webdavplist')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -661,5 +661,100 @@ export const supportedPicBedList: IStringKeyMap = {
|
|||||||
options: ['alias', 'accessKeyId', 'secretAccessKey', 'endpoint', 'sslEnabled', 's3ForcePathStyle', 'proxy', 'aclForUpload', 'bucketName', 'baseDir', 'paging', 'itemsPerPage'],
|
options: ['alias', 'accessKeyId', 'secretAccessKey', 'endpoint', 'sslEnabled', 's3ForcePathStyle', 'proxy', 'aclForUpload', 'bucketName', 'baseDir', 'paging', 'itemsPerPage'],
|
||||||
refLink: 'https://github.com/wayjam/picgo-plugin-s3',
|
refLink: 'https://github.com/wayjam/picgo-plugin-s3',
|
||||||
referenceText: '配置教程请参考:'
|
referenceText: '配置教程请参考:'
|
||||||
|
},
|
||||||
|
webdavplist: {
|
||||||
|
name: 'WebDAV',
|
||||||
|
icon: 'webdavplist',
|
||||||
|
configOptions: {
|
||||||
|
alias: {
|
||||||
|
required: true,
|
||||||
|
description: '配置别名-必需',
|
||||||
|
placeholder: '该配置的唯一标识',
|
||||||
|
type: 'string',
|
||||||
|
rule: aliasRule,
|
||||||
|
default: 'webdavplist-A',
|
||||||
|
tooltip: aliasTooltip
|
||||||
|
},
|
||||||
|
endpoint: {
|
||||||
|
required: true,
|
||||||
|
description: '地址-必需',
|
||||||
|
placeholder: '例如:https://example.com/dav',
|
||||||
|
type: 'string',
|
||||||
|
rule: defaultBaseRule('rootDomain'),
|
||||||
|
tooltip: '请填写完整的WebDAV地址,例如:https://example.com/dav'
|
||||||
|
},
|
||||||
|
username: {
|
||||||
|
required: true,
|
||||||
|
description: '用户名-必需',
|
||||||
|
placeholder: '请输入用户名',
|
||||||
|
type: 'string',
|
||||||
|
rule: defaultBaseRule('username')
|
||||||
|
},
|
||||||
|
bucketName: {
|
||||||
|
required: true,
|
||||||
|
description: '特殊配置',
|
||||||
|
placeholder: '例如:bucket1',
|
||||||
|
type: 'string',
|
||||||
|
default: 'webdav',
|
||||||
|
disabled: true,
|
||||||
|
tooltip: '此处不可修改,仅为软件兼容性考虑'
|
||||||
|
},
|
||||||
|
password: {
|
||||||
|
required: true,
|
||||||
|
description: '密码-必需',
|
||||||
|
placeholder: '请输入密码',
|
||||||
|
type: 'string',
|
||||||
|
rule: defaultBaseRule('password')
|
||||||
|
},
|
||||||
|
baseDir: {
|
||||||
|
required: false,
|
||||||
|
description: '起始目录-可选',
|
||||||
|
placeholder: '例如:/test1',
|
||||||
|
type: 'string',
|
||||||
|
default: '/',
|
||||||
|
tooltip: baseDirTooltip
|
||||||
|
},
|
||||||
|
customUrl: {
|
||||||
|
required: false,
|
||||||
|
description: '自定义域名-可选',
|
||||||
|
placeholder: '例如:https://example.com',
|
||||||
|
type: 'string',
|
||||||
|
tooltip: '如果您的WebDAV服务器支持自定义域名,请填写完整的自定义域名,例如:https://example.com',
|
||||||
|
rule: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any, callback: any) => {
|
||||||
|
if (value) {
|
||||||
|
if (!/^https?:\/\/.+/.test(value)) {
|
||||||
|
callback(new Error('自定义域名请以http://或https://开头'))
|
||||||
|
} else {
|
||||||
|
callback()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
callback()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
proxy: {
|
||||||
|
required: false,
|
||||||
|
description: '代理-可选',
|
||||||
|
placeholder: '例如:http://127.0.0.1:1080',
|
||||||
|
type: 'string',
|
||||||
|
tooltip: '如果需要特殊网络环境才能访问,请使用代理'
|
||||||
|
},
|
||||||
|
sslEnabled: {
|
||||||
|
required: true,
|
||||||
|
description: '使用HTTPS连接',
|
||||||
|
default: true,
|
||||||
|
type: 'boolean',
|
||||||
|
tooltip: '根据WebDAV服务器的配置,如果您的服务器不支持HTTPS,请关闭该选项'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
explain: 'WebDAV配置',
|
||||||
|
options: ['alias', 'endpoint', 'username', 'password', 'bucketName', 'baseDir', 'customUrl', 'proxy', 'sslEnabled'],
|
||||||
|
refLink: 'https://pichoro.horosama.com/#/PicHoroDocs/configure?id=webdav',
|
||||||
|
referenceText: '配置教程请参考:'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
41
src/renderer/manage/utils/textfile.ts
Normal file
41
src/renderer/manage/utils/textfile.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
export const textFileExt = [
|
||||||
|
'.bat',
|
||||||
|
'.c',
|
||||||
|
'.cmd',
|
||||||
|
'.conf',
|
||||||
|
'.config',
|
||||||
|
'.cpp',
|
||||||
|
'.css',
|
||||||
|
'.csv',
|
||||||
|
'.dart',
|
||||||
|
'.gitattributes',
|
||||||
|
'.gitconfig',
|
||||||
|
'.gitignore',
|
||||||
|
'.gitkeep',
|
||||||
|
'.gitmodules',
|
||||||
|
'.go',
|
||||||
|
'.h',
|
||||||
|
'.hpp',
|
||||||
|
'.htm',
|
||||||
|
'.html',
|
||||||
|
'.ini',
|
||||||
|
'.java',
|
||||||
|
'.js',
|
||||||
|
'.json',
|
||||||
|
'.log',
|
||||||
|
'.php',
|
||||||
|
'.prop',
|
||||||
|
'.properties',
|
||||||
|
'.py',
|
||||||
|
'.rc',
|
||||||
|
'.sh',
|
||||||
|
'.tsv',
|
||||||
|
'.txt',
|
||||||
|
'.xml',
|
||||||
|
'.yaml',
|
||||||
|
'.yml',
|
||||||
|
'.ts',
|
||||||
|
'.yarnrc',
|
||||||
|
'.condarc',
|
||||||
|
'license'
|
||||||
|
]
|
29
src/renderer/manage/utils/videofile.ts
Normal file
29
src/renderer/manage/utils/videofile.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
export const videoExt = [
|
||||||
|
'.aac',
|
||||||
|
'.amv',
|
||||||
|
'.avi',
|
||||||
|
'.flac',
|
||||||
|
'.flv',
|
||||||
|
'.m2ts',
|
||||||
|
'.m4a',
|
||||||
|
'.m4v',
|
||||||
|
'.mp3',
|
||||||
|
'.mpeg',
|
||||||
|
'.mpg',
|
||||||
|
'.mts',
|
||||||
|
'.ogg',
|
||||||
|
'.ogv',
|
||||||
|
'.vob',
|
||||||
|
'.wav',
|
||||||
|
'.webm',
|
||||||
|
'.mp4',
|
||||||
|
'.3g2',
|
||||||
|
'.3gp',
|
||||||
|
'.asf',
|
||||||
|
'.mov',
|
||||||
|
'.mxf',
|
||||||
|
'.rm',
|
||||||
|
'.rmvb',
|
||||||
|
'.wmv',
|
||||||
|
'.mkv'
|
||||||
|
]
|
@ -906,7 +906,7 @@ function handleLanguageChange (val: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function goConfigPage () {
|
function goConfigPage () {
|
||||||
sendToMain(OPEN_URL, 'https://picgo.github.io/PicGo-Doc/zh/guide/config.html#picgo设置')
|
sendToMain(OPEN_URL, 'https://piclist.cn/configure.html')
|
||||||
}
|
}
|
||||||
|
|
||||||
function goShortCutPage () {
|
function goShortCutPage () {
|
||||||
|
83
supported_format.md
Normal file
83
supported_format.md
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
# 支持预览的文件格式列表
|
||||||
|
|
||||||
|
## 图片
|
||||||
|
|
||||||
|
- .bmp
|
||||||
|
- .gif
|
||||||
|
- .ico
|
||||||
|
- .jpeg
|
||||||
|
- .jpg
|
||||||
|
- .png
|
||||||
|
- .webp
|
||||||
|
|
||||||
|
## 文本
|
||||||
|
|
||||||
|
- .bat
|
||||||
|
- .c
|
||||||
|
- .cmd
|
||||||
|
- .conf
|
||||||
|
- .config
|
||||||
|
- .cpp
|
||||||
|
- .css
|
||||||
|
- .csv
|
||||||
|
- .dart
|
||||||
|
- .gitattributes
|
||||||
|
- .gitconfig
|
||||||
|
- .gitignore
|
||||||
|
- .gitkeep
|
||||||
|
- .gitmodules
|
||||||
|
- .go
|
||||||
|
- .h
|
||||||
|
- .hpp
|
||||||
|
- .htm
|
||||||
|
- .html
|
||||||
|
- .ini
|
||||||
|
- .java
|
||||||
|
- .js
|
||||||
|
- .json
|
||||||
|
- .log
|
||||||
|
- .php
|
||||||
|
- .prop
|
||||||
|
- .properties
|
||||||
|
- .py
|
||||||
|
- .rc
|
||||||
|
- .sh
|
||||||
|
- .tsv
|
||||||
|
- .txt
|
||||||
|
- .xml
|
||||||
|
- .yaml
|
||||||
|
- .yml
|
||||||
|
- .yarnrc
|
||||||
|
- LICENSE
|
||||||
|
- .condarc
|
||||||
|
- .md
|
||||||
|
|
||||||
|
## 视频
|
||||||
|
|
||||||
|
- .aac
|
||||||
|
- .amv
|
||||||
|
- .avi
|
||||||
|
- .flac
|
||||||
|
- .flv
|
||||||
|
- .m2ts
|
||||||
|
- .m4a
|
||||||
|
- .m4v
|
||||||
|
- .mp3
|
||||||
|
- .mpeg
|
||||||
|
- .mpg
|
||||||
|
- .mts
|
||||||
|
- .ogg
|
||||||
|
- .ogv
|
||||||
|
- .vob
|
||||||
|
- .wav
|
||||||
|
- .webm
|
||||||
|
- .mp4
|
||||||
|
- .3g2
|
||||||
|
- .3gp
|
||||||
|
- .asf
|
||||||
|
- .mov
|
||||||
|
- .mxf
|
||||||
|
- .rm
|
||||||
|
- .rmvb
|
||||||
|
- .wmv
|
||||||
|
- .mkv
|
351
yarn.lock
351
yarn.lock
@ -2054,6 +2054,13 @@
|
|||||||
"@babel/types" "^7.4.4"
|
"@babel/types" "^7.4.4"
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
|
|
||||||
|
"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.5.5":
|
||||||
|
version "7.21.0"
|
||||||
|
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
|
||||||
|
integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
|
||||||
|
dependencies:
|
||||||
|
regenerator-runtime "^0.13.11"
|
||||||
|
|
||||||
"@babel/runtime@^7.12.13":
|
"@babel/runtime@^7.12.13":
|
||||||
version "7.20.7"
|
version "7.20.7"
|
||||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
|
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
|
||||||
@ -2135,6 +2142,13 @@
|
|||||||
"@babel/helper-validator-identifier" "^7.19.1"
|
"@babel/helper-validator-identifier" "^7.19.1"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
|
"@buttercup/fetch@^0.1.0":
|
||||||
|
version "0.1.0"
|
||||||
|
resolved "https://registry.npmjs.org/@buttercup/fetch/-/fetch-0.1.0.tgz#2c2dd34ac0758927dc612832b2834d9c42fd8d71"
|
||||||
|
integrity sha512-jkV4NLlE9BGQPgY+0sGi4s41IfreHACIICGpM6YhTlJlGp8XC4W2VapMBxdPenTgzduLU30c12PTvRlxpzoqBw==
|
||||||
|
optionalDependencies:
|
||||||
|
node-fetch "^3.3.0"
|
||||||
|
|
||||||
"@commitlint/cli@^7.5.2":
|
"@commitlint/cli@^7.5.2":
|
||||||
version "7.6.1"
|
version "7.6.1"
|
||||||
resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-7.6.1.tgz#a93cf995082831999937f6d5ec1a582c8fc0393a"
|
resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-7.6.1.tgz#a93cf995082831999937f6d5ec1a582c8fc0393a"
|
||||||
@ -2418,6 +2432,11 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@hapi/hoek" "^9.0.0"
|
"@hapi/hoek" "^9.0.0"
|
||||||
|
|
||||||
|
"@highlightjs/vue-plugin@^2.1.0":
|
||||||
|
version "2.1.0"
|
||||||
|
resolved "https://registry.npmjs.org/@highlightjs/vue-plugin/-/vue-plugin-2.1.0.tgz#b7c41e3597a46975665b10cad57882cbde1d1594"
|
||||||
|
integrity sha512-E+bmk4ncca+hBEYRV2a+1aIzIV0VSY/e5ArjpuSN9IO7wBJrzUE2u4ESCwrbQD7sAy+jWQjkV5qCCWgc+pu7CQ==
|
||||||
|
|
||||||
"@humanwhocodes/config-array@^0.11.8":
|
"@humanwhocodes/config-array@^0.11.8":
|
||||||
version "0.11.8"
|
version "0.11.8"
|
||||||
resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
|
resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
|
||||||
@ -3055,6 +3074,11 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@types/lodash" "*"
|
"@types/lodash" "*"
|
||||||
|
|
||||||
|
"@types/marked@^4.0.8":
|
||||||
|
version "4.0.8"
|
||||||
|
resolved "https://registry.npmjs.org/@types/marked/-/marked-4.0.8.tgz#b316887ab3499d0a8f4c70b7bd8508f92d477955"
|
||||||
|
integrity sha512-HVNzMT5QlWCOdeuBsgXP8EZzKUf0+AXzN+sLmjvaB3ZlLqO+e4u0uXrdw9ub69wBKFs+c6/pA4r9sy6cCDvImw==
|
||||||
|
|
||||||
"@types/mime-types@^2.1.1":
|
"@types/mime-types@^2.1.1":
|
||||||
version "2.1.1"
|
version "2.1.1"
|
||||||
resolved "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz#d9ba43490fa3a3df958759adf69396c3532cf2c1"
|
resolved "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz#d9ba43490fa3a3df958759adf69396c3532cf2c1"
|
||||||
@ -3335,6 +3359,52 @@
|
|||||||
"@typescript-eslint/types" "5.48.0"
|
"@typescript-eslint/types" "5.48.0"
|
||||||
eslint-visitor-keys "^3.3.0"
|
eslint-visitor-keys "^3.3.0"
|
||||||
|
|
||||||
|
"@videojs-player/vue@^1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/@videojs-player/vue/-/vue-1.0.0.tgz#df7db677b43b2d9b6872e71cd0eb2238cc19a8fd"
|
||||||
|
integrity sha512-WonTezRfKu3fYdQLt/ta+nuKH6gMZUv8l40Jke/j4Lae7IqeO/+lLAmBnh3ni88bwR+vkFXIlZ2Ci7VKInIYJg==
|
||||||
|
|
||||||
|
"@videojs/http-streaming@3.0.0":
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/@videojs/http-streaming/-/http-streaming-3.0.0.tgz#3ee879761f7a990672b98c23ddb4cd7085005bfc"
|
||||||
|
integrity sha512-AdKmY/W2dyeJP0uALgMRmhLa4pbHMvE4OMlg6yQvufnqsz6jDFo1DYnZRv2ENDYrmVdnPH58Ehgu59053+OIhQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
"@videojs/vhs-utils" "4.0.0"
|
||||||
|
aes-decrypter "4.0.1"
|
||||||
|
global "^4.4.0"
|
||||||
|
m3u8-parser "^6.0.0"
|
||||||
|
mpd-parser "^1.0.1"
|
||||||
|
mux.js "6.2.0"
|
||||||
|
video.js "^7 || ^8"
|
||||||
|
|
||||||
|
"@videojs/vhs-utils@4.0.0", "@videojs/vhs-utils@^4.0.0":
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-4.0.0.tgz#4d4dbf5d61a9fbd2da114b84ec747c3a483bc60d"
|
||||||
|
integrity sha512-xJp7Yd4jMLwje2vHCUmi8MOUU76nxiwII3z4Eg3Ucb+6rrkFVGosrXlMgGnaLjq724j3wzNElRZ71D/CKrTtxg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
global "^4.4.0"
|
||||||
|
url-toolkit "^2.2.1"
|
||||||
|
|
||||||
|
"@videojs/vhs-utils@^3.0.5":
|
||||||
|
version "3.0.5"
|
||||||
|
resolved "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-3.0.5.tgz#665ba70d78258ba1ab977364e2fe9f4d4799c46c"
|
||||||
|
integrity sha512-PKVgdo8/GReqdx512F+ombhS+Bzogiofy1LgAj4tN8PfdBx3HSS7V5WfJotKTqtOWGwVfSWsrYN/t09/DSryrw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
global "^4.4.0"
|
||||||
|
url-toolkit "^2.2.1"
|
||||||
|
|
||||||
|
"@videojs/xhr@2.6.0":
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.npmjs.org/@videojs/xhr/-/xhr-2.6.0.tgz#cd897e0ad54faf497961bcce3fa16dc15a26bb80"
|
||||||
|
integrity sha512-7J361GiN1tXpm+gd0xz2QWr3xNWBE+rytvo8J3KuggFaLg+U37gZQ2BuPLcnkfGffy2e+ozY70RHC8jt7zjA6Q==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.5.5"
|
||||||
|
global "~4.4.0"
|
||||||
|
is-function "^1.0.1"
|
||||||
|
|
||||||
"@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
|
"@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
|
||||||
version "1.4.0"
|
version "1.4.0"
|
||||||
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz#8d53a1e21347db8edbe54d339902583176de09f2"
|
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz#8d53a1e21347db8edbe54d339902583176de09f2"
|
||||||
@ -3972,6 +4042,11 @@
|
|||||||
"@webassemblyjs/ast" "1.11.1"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@xtuc/long" "4.2.2"
|
"@xtuc/long" "4.2.2"
|
||||||
|
|
||||||
|
"@xmldom/xmldom@^0.8.3":
|
||||||
|
version "0.8.6"
|
||||||
|
resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.6.tgz#8a1524eb5bd5e965c1e3735476f0262469f71440"
|
||||||
|
integrity sha512-uRjjusqpoqfmRkTaNuLJ2VohVr67Q5YwDATW3VU7PfzTj6IRaihGrYI7zckGZjxQPBIp63nfvJbM+Yu5ICh0Bg==
|
||||||
|
|
||||||
"@xtuc/ieee754@^1.2.0":
|
"@xtuc/ieee754@^1.2.0":
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
|
resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
|
||||||
@ -4046,6 +4121,16 @@ address@^1.1.2:
|
|||||||
resolved "https://registry.npmjs.org/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
|
resolved "https://registry.npmjs.org/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
|
||||||
integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
|
integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
|
||||||
|
|
||||||
|
aes-decrypter@4.0.1, aes-decrypter@^4.0.1:
|
||||||
|
version "4.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/aes-decrypter/-/aes-decrypter-4.0.1.tgz#c1a81d0bde0e96fed0674488d2a31a6d7ab9b7a7"
|
||||||
|
integrity sha512-H1nh/P9VZXUf17AA5NQfJML88CFjVBDuGkp5zDHa7oEhYN9TTpNLJknRY1ie0iSKWlDf6JRnJKaZVDSQdPy6Cg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
"@videojs/vhs-utils" "^3.0.5"
|
||||||
|
global "^4.4.0"
|
||||||
|
pkcs7 "^1.0.4"
|
||||||
|
|
||||||
agent-base@6, agent-base@^6.0.0, agent-base@^6.0.2:
|
agent-base@6, agent-base@^6.0.0, agent-base@^6.0.2:
|
||||||
version "6.0.2"
|
version "6.0.2"
|
||||||
resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
|
resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
|
||||||
@ -4688,6 +4773,13 @@ brace-expansion@^1.1.7:
|
|||||||
balanced-match "^1.0.0"
|
balanced-match "^1.0.0"
|
||||||
concat-map "0.0.1"
|
concat-map "0.0.1"
|
||||||
|
|
||||||
|
brace-expansion@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
|
||||||
|
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
|
||||||
|
dependencies:
|
||||||
|
balanced-match "^1.0.0"
|
||||||
|
|
||||||
braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
|
braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
|
||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
||||||
@ -4824,6 +4916,11 @@ builtins@^5.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
semver "^7.0.0"
|
semver "^7.0.0"
|
||||||
|
|
||||||
|
byte-length@^1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.npmjs.org/byte-length/-/byte-length-1.0.2.tgz#ba5a5909240b0121c079b7f7b15248d6f08223cc"
|
||||||
|
integrity sha512-ovBpjmsgd/teRmgcPh23d4gJvxDoXtAzEL9xTfMU8Yc2kqCDb7L9jAG0XHl1nzuGl+h3ebCIF1i62UFyA9V/2Q==
|
||||||
|
|
||||||
bytes@3.0.0:
|
bytes@3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
|
resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
|
||||||
@ -6011,6 +6108,11 @@ data-uri-to-buffer@3:
|
|||||||
resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
|
resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
|
||||||
integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
|
integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
|
||||||
|
|
||||||
|
data-uri-to-buffer@^4.0.0:
|
||||||
|
version "4.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e"
|
||||||
|
integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==
|
||||||
|
|
||||||
dateformat@^2.0.0:
|
dateformat@^2.0.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.npmmirror.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062"
|
resolved "https://registry.npmmirror.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062"
|
||||||
@ -6380,6 +6482,11 @@ dom-serializer@^1.0.1:
|
|||||||
domhandler "^4.2.0"
|
domhandler "^4.2.0"
|
||||||
entities "^2.0.0"
|
entities "^2.0.0"
|
||||||
|
|
||||||
|
dom-walk@^0.1.0:
|
||||||
|
version "0.1.2"
|
||||||
|
resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
|
||||||
|
integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
|
||||||
|
|
||||||
domelementtype@^2.0.1, domelementtype@^2.2.0:
|
domelementtype@^2.0.1, domelementtype@^2.2.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
|
resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
|
||||||
@ -7284,6 +7391,13 @@ fast-xml-parser@4.0.11:
|
|||||||
dependencies:
|
dependencies:
|
||||||
strnum "^1.0.5"
|
strnum "^1.0.5"
|
||||||
|
|
||||||
|
fast-xml-parser@^3.19.0:
|
||||||
|
version "3.21.1"
|
||||||
|
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz#152a1d51d445380f7046b304672dd55d15c9e736"
|
||||||
|
integrity sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==
|
||||||
|
dependencies:
|
||||||
|
strnum "^1.0.4"
|
||||||
|
|
||||||
fast-xml-parser@^4.1.1:
|
fast-xml-parser@^4.1.1:
|
||||||
version "4.1.1"
|
version "4.1.1"
|
||||||
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.1.1.tgz#28c878b7f1eb4555fa898f1c715adf9d4007306e"
|
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.1.1.tgz#28c878b7f1eb4555fa898f1c715adf9d4007306e"
|
||||||
@ -7312,6 +7426,14 @@ fd-slicer@~1.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
pend "~1.2.0"
|
pend "~1.2.0"
|
||||||
|
|
||||||
|
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
|
||||||
|
version "3.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
|
||||||
|
integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
|
||||||
|
dependencies:
|
||||||
|
node-domexception "^1.0.0"
|
||||||
|
web-streams-polyfill "^3.0.3"
|
||||||
|
|
||||||
fflate@^0.7.3:
|
fflate@^0.7.3:
|
||||||
version "0.7.3"
|
version "0.7.3"
|
||||||
resolved "https://registry.npmmirror.com/fflate/-/fflate-0.7.3.tgz#288b034ff0e9c380eaa2feff48c787b8371b7fa5"
|
resolved "https://registry.npmmirror.com/fflate/-/fflate-0.7.3.tgz#288b034ff0e9c380eaa2feff48c787b8371b7fa5"
|
||||||
@ -7557,6 +7679,13 @@ form-data@~2.3.2:
|
|||||||
combined-stream "^1.0.6"
|
combined-stream "^1.0.6"
|
||||||
mime-types "^2.1.12"
|
mime-types "^2.1.12"
|
||||||
|
|
||||||
|
formdata-polyfill@^4.0.10:
|
||||||
|
version "4.0.10"
|
||||||
|
resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
|
||||||
|
integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
|
||||||
|
dependencies:
|
||||||
|
fetch-blob "^3.1.2"
|
||||||
|
|
||||||
formstream@^1.1.0:
|
formstream@^1.1.0:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.npmjs.org/formstream/-/formstream-1.1.1.tgz#17259d2440c35ca9736db9f45fb3ba3f8669c750"
|
resolved "https://registry.npmjs.org/formstream/-/formstream-1.1.1.tgz#17259d2440c35ca9736db9f45fb3ba3f8669c750"
|
||||||
@ -7945,6 +8074,14 @@ global-prefix@^1.0.1:
|
|||||||
is-windows "^1.0.1"
|
is-windows "^1.0.1"
|
||||||
which "^1.2.14"
|
which "^1.2.14"
|
||||||
|
|
||||||
|
global@4.4.0, global@^4.3.1, global@^4.4.0, global@~4.4.0:
|
||||||
|
version "4.4.0"
|
||||||
|
resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
|
||||||
|
integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
|
||||||
|
dependencies:
|
||||||
|
min-document "^2.19.0"
|
||||||
|
process "^0.11.10"
|
||||||
|
|
||||||
globals@^11.1.0:
|
globals@^11.1.0:
|
||||||
version "11.12.0"
|
version "11.12.0"
|
||||||
resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
||||||
@ -8212,6 +8349,11 @@ highlight.js@^10.7.1:
|
|||||||
resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
|
resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
|
||||||
integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
|
integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
|
||||||
|
|
||||||
|
highlight.js@^11.7.0:
|
||||||
|
version "11.7.0"
|
||||||
|
resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-11.7.0.tgz#3ff0165bc843f8c9bce1fd89e2fda9143d24b11e"
|
||||||
|
integrity sha512-1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ==
|
||||||
|
|
||||||
hmacsha1@^1.0.0:
|
hmacsha1@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.npmmirror.com/hmacsha1/-/hmacsha1-1.0.0.tgz#c1b7ae03a4ea116348090af14f8148c12938a917"
|
resolved "https://registry.npmmirror.com/hmacsha1/-/hmacsha1-1.0.0.tgz#c1b7ae03a4ea116348090af14f8148c12938a917"
|
||||||
@ -8243,6 +8385,11 @@ hosted-git-info@^4.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
lru-cache "^6.0.0"
|
lru-cache "^6.0.0"
|
||||||
|
|
||||||
|
hot-patcher@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/hot-patcher/-/hot-patcher-2.0.0.tgz#10a21b5bb4f5757316c41fc98794c11192a0a41e"
|
||||||
|
integrity sha512-rwJ0ZqSFgm+5oD0KiGBVinyPWRJESRSsHlEWDzZjyOe/OfhD9tynHqUyUIGX2fWuV+BihW4nXxeoZRJVHid64w==
|
||||||
|
|
||||||
hpack.js@^2.1.6:
|
hpack.js@^2.1.6:
|
||||||
version "2.1.6"
|
version "2.1.6"
|
||||||
resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
|
resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
|
||||||
@ -8567,6 +8714,11 @@ indent-string@^4.0.0:
|
|||||||
resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
|
resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
|
||||||
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
|
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
|
||||||
|
|
||||||
|
individual@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/individual/-/individual-2.0.0.tgz#833b097dad23294e76117a98fb38e0d9ad61bb97"
|
||||||
|
integrity sha512-pWt8hBCqJsUWI/HtcfWod7+N9SgAqyPEaF7JQjwzjn5vGrpg6aQ5qeAFQ7dx//UH4J1O+7xqew+gCeeFt6xN/g==
|
||||||
|
|
||||||
inflight@^1.0.4:
|
inflight@^1.0.4:
|
||||||
version "1.0.6"
|
version "1.0.6"
|
||||||
resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
||||||
@ -8785,6 +8937,11 @@ is-fullwidth-code-point@^3.0.0:
|
|||||||
resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
||||||
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
||||||
|
|
||||||
|
is-function@^1.0.1:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
|
||||||
|
integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
|
||||||
|
|
||||||
is-generator-function@^1.0.7:
|
is-generator-function@^1.0.7:
|
||||||
version "1.0.10"
|
version "1.0.10"
|
||||||
resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
|
resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
|
||||||
@ -9258,6 +9415,11 @@ jszip@^3.1.0:
|
|||||||
readable-stream "~2.3.6"
|
readable-stream "~2.3.6"
|
||||||
set-immediate-shim "~1.0.1"
|
set-immediate-shim "~1.0.1"
|
||||||
|
|
||||||
|
keycode@2.2.0:
|
||||||
|
version "2.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz#3d0af56dc7b8b8e5cba8d0a97f107204eec22b04"
|
||||||
|
integrity sha512-ps3I9jAdNtRpJrbBvQjpzyFbss/skHqzS+eu4RxKLaEAtFqkjZaB6TZMSivPbLxf4K7VI4SjR0P5mRCX5+Q25A==
|
||||||
|
|
||||||
keycode@^2.2.0:
|
keycode@^2.2.0:
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
resolved "https://registry.npmjs.org/keycode/-/keycode-2.2.1.tgz#09c23b2be0611d26117ea2501c2c391a01f39eff"
|
resolved "https://registry.npmjs.org/keycode/-/keycode-2.2.1.tgz#09c23b2be0611d26117ea2501c2c391a01f39eff"
|
||||||
@ -9323,6 +9485,11 @@ launch-editor@^2.2.1, launch-editor@^2.3.0:
|
|||||||
picocolors "^1.0.0"
|
picocolors "^1.0.0"
|
||||||
shell-quote "^1.6.1"
|
shell-quote "^1.6.1"
|
||||||
|
|
||||||
|
layerr@^0.1.2:
|
||||||
|
version "0.1.2"
|
||||||
|
resolved "https://registry.npmjs.org/layerr/-/layerr-0.1.2.tgz#16c8e7fb042d3595ab15492bdad088f31d7afd15"
|
||||||
|
integrity sha512-ob5kTd9H3S4GOG2nVXyQhOu9O8nBgP555XxWPkJI0tR0JeRilfyTp8WtPdIJHLXBmHMSdEq5+KMxiYABeScsIQ==
|
||||||
|
|
||||||
lazy-val@^1.0.4, lazy-val@^1.0.5:
|
lazy-val@^1.0.4, lazy-val@^1.0.5:
|
||||||
version "1.0.5"
|
version "1.0.5"
|
||||||
resolved "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d"
|
resolved "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d"
|
||||||
@ -9616,6 +9783,15 @@ lru-cache@^6.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
yallist "^4.0.0"
|
yallist "^4.0.0"
|
||||||
|
|
||||||
|
m3u8-parser@^6.0.0:
|
||||||
|
version "6.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/m3u8-parser/-/m3u8-parser-6.0.0.tgz#e9143313b44f07bb25fdea1c8aac1098d9ada192"
|
||||||
|
integrity sha512-s3JfDtqhxTilZQf+P1m9dZc4ohL4O/aylP1VV6g9lhKuQNfAcVUzq7d2wgJ9nZR4ibjuXaP87QzGCV6vB0kV6g==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
"@videojs/vhs-utils" "^3.0.5"
|
||||||
|
global "^4.4.0"
|
||||||
|
|
||||||
magic-string@^0.25.7:
|
magic-string@^0.25.7:
|
||||||
version "0.25.9"
|
version "0.25.9"
|
||||||
resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
|
resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
|
||||||
@ -9657,6 +9833,11 @@ map-obj@^4.0.0:
|
|||||||
resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
|
resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
|
||||||
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
|
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
|
||||||
|
|
||||||
|
marked@^4.2.12:
|
||||||
|
version "4.2.12"
|
||||||
|
resolved "https://registry.npmjs.org/marked/-/marked-4.2.12.tgz#d69a64e21d71b06250da995dcd065c11083bebb5"
|
||||||
|
integrity sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==
|
||||||
|
|
||||||
matcher@^3.0.0:
|
matcher@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca"
|
resolved "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca"
|
||||||
@ -9873,6 +10054,13 @@ mimic-response@^4.0.0:
|
|||||||
resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f"
|
resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f"
|
||||||
integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==
|
integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==
|
||||||
|
|
||||||
|
min-document@^2.19.0:
|
||||||
|
version "2.19.0"
|
||||||
|
resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
|
||||||
|
integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==
|
||||||
|
dependencies:
|
||||||
|
dom-walk "^0.1.0"
|
||||||
|
|
||||||
min-indent@^1.0.0:
|
min-indent@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
|
resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
|
||||||
@ -9904,6 +10092,13 @@ minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
|
|||||||
dependencies:
|
dependencies:
|
||||||
brace-expansion "^1.1.7"
|
brace-expansion "^1.1.7"
|
||||||
|
|
||||||
|
minimatch@^5.1.0:
|
||||||
|
version "5.1.6"
|
||||||
|
resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
|
||||||
|
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
|
||||||
|
dependencies:
|
||||||
|
brace-expansion "^2.0.1"
|
||||||
|
|
||||||
minimist-options@4.1.0:
|
minimist-options@4.1.0:
|
||||||
version "4.1.0"
|
version "4.1.0"
|
||||||
resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
|
resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
|
||||||
@ -9978,6 +10173,16 @@ module-alias@^2.2.2:
|
|||||||
resolved "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz#151cdcecc24e25739ff0aa6e51e1c5716974c0e0"
|
resolved "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz#151cdcecc24e25739ff0aa6e51e1c5716974c0e0"
|
||||||
integrity sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==
|
integrity sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==
|
||||||
|
|
||||||
|
mpd-parser@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/mpd-parser/-/mpd-parser-1.0.1.tgz#9f2024d61775b27c2e4cb254d9a665649d6c6c10"
|
||||||
|
integrity sha512-3CmVq7af3tcLqpx9SLBSweVnxS0SlpkKr+YBLC7O/wO1bv2L9tsCY350wziPWuMEjE5+x46i898sI4YIY3cmJA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
"@videojs/vhs-utils" "^3.0.5"
|
||||||
|
"@xmldom/xmldom" "^0.8.3"
|
||||||
|
global "^4.4.0"
|
||||||
|
|
||||||
mrmime@^1.0.0:
|
mrmime@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27"
|
resolved "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27"
|
||||||
@ -10011,6 +10216,14 @@ mute-stream@0.0.7:
|
|||||||
resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
||||||
integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
|
integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
|
||||||
|
|
||||||
|
mux.js@6.2.0, mux.js@^6.2.0:
|
||||||
|
version "6.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/mux.js/-/mux.js-6.2.0.tgz#158a4fcf5d83b087ab9037d325527ea993f830a3"
|
||||||
|
integrity sha512-SKuxIcbmK/aJoz78aQNuoXY8R/uEPm1gQMqWTXL6DNl7oF8UPjdt/AunXGkPQpBouGWKDgL/TzSl2VV5NuboRg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.11.2"
|
||||||
|
global "^4.4.0"
|
||||||
|
|
||||||
mz-modules@^2.1.0:
|
mz-modules@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
resolved "https://registry.npmmirror.com/mz-modules/-/mz-modules-2.1.0.tgz#7f529877afd0d42f409a7463b96986d61cfbcf96"
|
resolved "https://registry.npmmirror.com/mz-modules/-/mz-modules-2.1.0.tgz#7f529877afd0d42f409a7463b96986d61cfbcf96"
|
||||||
@ -10061,6 +10274,11 @@ neo-async@^2.6.0, neo-async@^2.6.2:
|
|||||||
resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
|
resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
|
||||||
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
||||||
|
|
||||||
|
nested-property@^4.0.0:
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/nested-property/-/nested-property-4.0.0.tgz#a67b5a31991e701e03cdbaa6453bc5b1011bb88d"
|
||||||
|
integrity sha512-yFehXNWRs4cM0+dz7QxCd06hTbWbSkV0ISsqBfkntU6TOY4Qm3Q88fRRLOddkGh2Qq6dZvnKVAahfhjcUvLnyA==
|
||||||
|
|
||||||
netmask@^2.0.2:
|
netmask@^2.0.2:
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7"
|
resolved "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7"
|
||||||
@ -10084,6 +10302,11 @@ node-addon-api@^1.6.3:
|
|||||||
resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d"
|
resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d"
|
||||||
integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==
|
integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==
|
||||||
|
|
||||||
|
node-domexception@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
|
||||||
|
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
|
||||||
|
|
||||||
node-fetch@^2.6.7:
|
node-fetch@^2.6.7:
|
||||||
version "2.6.7"
|
version "2.6.7"
|
||||||
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
|
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
|
||||||
@ -10091,6 +10314,15 @@ node-fetch@^2.6.7:
|
|||||||
dependencies:
|
dependencies:
|
||||||
whatwg-url "^5.0.0"
|
whatwg-url "^5.0.0"
|
||||||
|
|
||||||
|
node-fetch@^3.3.0:
|
||||||
|
version "3.3.0"
|
||||||
|
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.0.tgz#37e71db4ecc257057af828d523a7243d651d91e4"
|
||||||
|
integrity sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==
|
||||||
|
dependencies:
|
||||||
|
data-uri-to-buffer "^4.0.0"
|
||||||
|
fetch-blob "^3.1.4"
|
||||||
|
formdata-polyfill "^4.0.10"
|
||||||
|
|
||||||
node-forge@^1:
|
node-forge@^1:
|
||||||
version "1.3.1"
|
version "1.3.1"
|
||||||
resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
|
resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
|
||||||
@ -10624,6 +10856,11 @@ path-parse@^1.0.7:
|
|||||||
resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
||||||
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
||||||
|
|
||||||
|
path-posix@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz#06b26113f56beab042545a23bfa88003ccac260f"
|
||||||
|
integrity sha512-1gJ0WpNIiYcQydgg3Ed8KzvIqTsDpNwq+cjBCssvBtuTWjEqY1AW+i+OepiEMqDCzyro9B2sLAe4RBPajMYFiA==
|
||||||
|
|
||||||
path-to-regexp@0.1.7:
|
path-to-regexp@0.1.7:
|
||||||
version "0.1.7"
|
version "0.1.7"
|
||||||
resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
||||||
@ -10739,6 +10976,13 @@ pinkie@^2.0.0:
|
|||||||
resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
||||||
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
|
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
|
||||||
|
|
||||||
|
pkcs7@^1.0.4:
|
||||||
|
version "1.0.4"
|
||||||
|
resolved "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.4.tgz#6090b9e71160dabf69209d719cbafa538b00a1cb"
|
||||||
|
integrity sha512-afRERtHn54AlwaF2/+LFszyAANTCggGilmcmILUzEjvs3XgFZT+xE6+QWQcAGmu4xajy+Xtj7acLOPdx5/eXWQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.5.5"
|
||||||
|
|
||||||
pkg-dir@^3.0.0:
|
pkg-dir@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
||||||
@ -11099,6 +11343,11 @@ process-nextick-args@~2.0.0:
|
|||||||
resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
||||||
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
|
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
|
||||||
|
|
||||||
|
process@^0.11.10:
|
||||||
|
version "0.11.10"
|
||||||
|
resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
||||||
|
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
|
||||||
|
|
||||||
progress-webpack-plugin@^1.0.12:
|
progress-webpack-plugin@^1.0.12:
|
||||||
version "1.0.16"
|
version "1.0.16"
|
||||||
resolved "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz#278f5c1afd21af783aad72c5ec95241520230fe5"
|
resolved "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz#278f5c1afd21af783aad72c5ec95241520230fe5"
|
||||||
@ -11238,6 +11487,11 @@ querystring@0.2.0:
|
|||||||
resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
||||||
integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==
|
integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==
|
||||||
|
|
||||||
|
querystringify@^2.1.1:
|
||||||
|
version "2.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
|
||||||
|
integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
|
||||||
|
|
||||||
queue-microtask@^1.2.2:
|
queue-microtask@^1.2.2:
|
||||||
version "1.2.3"
|
version "1.2.3"
|
||||||
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
|
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
|
||||||
@ -11738,6 +11992,13 @@ run-parallel@^1.1.9:
|
|||||||
dependencies:
|
dependencies:
|
||||||
queue-microtask "^1.2.2"
|
queue-microtask "^1.2.2"
|
||||||
|
|
||||||
|
rust-result@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/rust-result/-/rust-result-1.0.0.tgz#34c75b2e6dc39fe5875e5bdec85b5e0f91536f72"
|
||||||
|
integrity sha512-6cJzSBU+J/RJCF063onnQf0cDUOHs9uZI1oroSGnHOph+CQTIJ5Pp2hK5kEQq1+7yE/EEWfulSNXAQ2jikPthA==
|
||||||
|
dependencies:
|
||||||
|
individual "^2.0.0"
|
||||||
|
|
||||||
rxjs@^6.4.0:
|
rxjs@^6.4.0:
|
||||||
version "6.6.7"
|
version "6.6.7"
|
||||||
resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
||||||
@ -11755,6 +12016,13 @@ safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0,
|
|||||||
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
||||||
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
||||||
|
|
||||||
|
safe-json-parse@4.0.0:
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-4.0.0.tgz#7c0f578cfccd12d33a71c0e05413e2eca171eaac"
|
||||||
|
integrity sha512-RjZPPHugjK0TOzFrLZ8inw44s9bKox99/0AZW9o/BEQVrJfhI+fIHMErnPyRa89/yRXUUr93q+tiN6zhoVV4wQ==
|
||||||
|
dependencies:
|
||||||
|
rust-result "^1.0.0"
|
||||||
|
|
||||||
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
|
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
|
||||||
version "2.1.2"
|
version "2.1.2"
|
||||||
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
||||||
@ -12468,7 +12736,7 @@ strip-outer@^1.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
escape-string-regexp "^1.0.2"
|
escape-string-regexp "^1.0.2"
|
||||||
|
|
||||||
strnum@^1.0.5:
|
strnum@^1.0.4, strnum@^1.0.5:
|
||||||
version "1.0.5"
|
version "1.0.5"
|
||||||
resolved "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
|
resolved "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
|
||||||
integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
|
integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
|
||||||
@ -13090,6 +13358,11 @@ urix@^0.1.0:
|
|||||||
resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
|
resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
|
||||||
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
|
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
|
||||||
|
|
||||||
|
url-join@^4.0.1:
|
||||||
|
version "4.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7"
|
||||||
|
integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
|
||||||
|
|
||||||
url-parse-lax@^3.0.0:
|
url-parse-lax@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
|
resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
|
||||||
@ -13097,11 +13370,24 @@ url-parse-lax@^3.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
prepend-http "^2.0.0"
|
prepend-http "^2.0.0"
|
||||||
|
|
||||||
|
url-parse@^1.5.10:
|
||||||
|
version "1.5.10"
|
||||||
|
resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
|
||||||
|
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
|
||||||
|
dependencies:
|
||||||
|
querystringify "^2.1.1"
|
||||||
|
requires-port "^1.0.0"
|
||||||
|
|
||||||
url-to-options@^1.0.1:
|
url-to-options@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
|
resolved "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
|
||||||
integrity sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==
|
integrity sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==
|
||||||
|
|
||||||
|
url-toolkit@^2.2.1:
|
||||||
|
version "2.2.5"
|
||||||
|
resolved "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.5.tgz#58406b18e12c58803e14624df5e374f638b0f607"
|
||||||
|
integrity sha512-mtN6xk+Nac+oyJ/PrI7tzfmomRVNFIWKUbG8jdYFt52hxbiReFAXIjYskvu64/dvuW71IcB7lV8l0HvZMac6Jg==
|
||||||
|
|
||||||
url@0.10.3:
|
url@0.10.3:
|
||||||
version "0.10.3"
|
version "0.10.3"
|
||||||
resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
|
resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
|
||||||
@ -13231,6 +13517,45 @@ verror@^1.10.0:
|
|||||||
core-util-is "1.0.2"
|
core-util-is "1.0.2"
|
||||||
extsprintf "^1.2.0"
|
extsprintf "^1.2.0"
|
||||||
|
|
||||||
|
"video.js@^7 || ^8", video.js@^8.0.4:
|
||||||
|
version "8.0.4"
|
||||||
|
resolved "https://registry.npmjs.org/video.js/-/video.js-8.0.4.tgz#d95a30c40aa5045769e4c9937ced0ed250518a1f"
|
||||||
|
integrity sha512-fvvWauPanrKDps1HQGGL+9CIAK8G0YVwlNme0hvY0k3moXQryaRcJSLHIlPKV2j9ZFTHl32VbN43jL3TaUllfg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.12.5"
|
||||||
|
"@videojs/http-streaming" "3.0.0"
|
||||||
|
"@videojs/vhs-utils" "^4.0.0"
|
||||||
|
"@videojs/xhr" "2.6.0"
|
||||||
|
aes-decrypter "^4.0.1"
|
||||||
|
global "4.4.0"
|
||||||
|
keycode "2.2.0"
|
||||||
|
m3u8-parser "^6.0.0"
|
||||||
|
mpd-parser "^1.0.1"
|
||||||
|
mux.js "^6.2.0"
|
||||||
|
safe-json-parse "4.0.0"
|
||||||
|
videojs-contrib-quality-levels "3.0.0"
|
||||||
|
videojs-font "3.2.0"
|
||||||
|
videojs-vtt.js "0.15.4"
|
||||||
|
|
||||||
|
videojs-contrib-quality-levels@3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/videojs-contrib-quality-levels/-/videojs-contrib-quality-levels-3.0.0.tgz#bc66f1333b763754b4425455bee4ef6e5ba53984"
|
||||||
|
integrity sha512-sNx38EYUx+Q+gmup1gVTv9P9/sPs28rM7gZOx1sedaHoKxEdYB+ysOGfHj6MSELBMNGMj6ZspdrpSiWguGvGxA==
|
||||||
|
dependencies:
|
||||||
|
global "^4.4.0"
|
||||||
|
|
||||||
|
videojs-font@3.2.0:
|
||||||
|
version "3.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/videojs-font/-/videojs-font-3.2.0.tgz#212c9d3f4e4ec3fa7345167d64316add35e92232"
|
||||||
|
integrity sha512-g8vHMKK2/JGorSfqAZQUmYYNnXmfec4MLhwtEFS+mMs2IDY398GLysy6BH6K+aS1KMNu/xWZ8Sue/X/mdQPliA==
|
||||||
|
|
||||||
|
videojs-vtt.js@0.15.4:
|
||||||
|
version "0.15.4"
|
||||||
|
resolved "https://registry.npmjs.org/videojs-vtt.js/-/videojs-vtt.js-0.15.4.tgz#5dc5aabcd82ba40c5595469bd855ea8230ca152c"
|
||||||
|
integrity sha512-r6IhM325fcLb1D6pgsMkTQT1PpFdUdYZa1iqk7wJEu+QlibBwATPfPc9Bg8Jiym0GE5yP1AG2rMLu+QMVWkYtA==
|
||||||
|
dependencies:
|
||||||
|
global "^4.3.1"
|
||||||
|
|
||||||
vm2@^3.9.8:
|
vm2@^3.9.8:
|
||||||
version "3.9.13"
|
version "3.9.13"
|
||||||
resolved "https://registry.npmjs.org/vm2/-/vm2-3.9.13.tgz#774a1a3d73b9b90b1aa45bcc5f25e349f2eef649"
|
resolved "https://registry.npmjs.org/vm2/-/vm2-3.9.13.tgz#774a1a3d73b9b90b1aa45bcc5f25e349f2eef649"
|
||||||
@ -13375,6 +13700,30 @@ wcwidth@^1.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
defaults "^1.0.3"
|
defaults "^1.0.3"
|
||||||
|
|
||||||
|
web-streams-polyfill@^3.0.3:
|
||||||
|
version "3.2.1"
|
||||||
|
resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
|
||||||
|
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
|
||||||
|
|
||||||
|
webdav@^5.0.0-r3:
|
||||||
|
version "5.0.0-r3"
|
||||||
|
resolved "https://registry.npmjs.org/webdav/-/webdav-5.0.0-r3.tgz#647d76fb84e9998bae5e0c4fde6c3893be4d2612"
|
||||||
|
integrity sha512-UGVbBWlZ2GudtRFgWiDeF/irk+vjncnlwnflsJW9+HNz0gBXO1CBlACQeyThcCck32VxyLHsw8M5MdAg28kSFw==
|
||||||
|
dependencies:
|
||||||
|
"@buttercup/fetch" "^0.1.0"
|
||||||
|
base-64 "^1.0.0"
|
||||||
|
byte-length "^1.0.2"
|
||||||
|
fast-xml-parser "^3.19.0"
|
||||||
|
he "^1.2.0"
|
||||||
|
hot-patcher "^2.0.0"
|
||||||
|
layerr "^0.1.2"
|
||||||
|
md5 "^2.3.0"
|
||||||
|
minimatch "^5.1.0"
|
||||||
|
nested-property "^4.0.0"
|
||||||
|
path-posix "^1.0.0"
|
||||||
|
url-join "^4.0.1"
|
||||||
|
url-parse "^1.5.10"
|
||||||
|
|
||||||
webidl-conversions@^3.0.0:
|
webidl-conversions@^3.0.0:
|
||||||
version "3.0.1"
|
version "3.0.1"
|
||||||
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
||||||
|
Loading…
Reference in New Issue
Block a user