Chore: bump npm pack

This commit is contained in:
zijiren233 2024-06-15 22:34:58 +08:00
parent 39fc20ef88
commit baea3450ab
4 changed files with 2103 additions and 1939 deletions

2
components.d.ts vendored
View File

@ -1,10 +1,10 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
Alist: typeof import('./src/components/fileList/alist.vue')['default']

3963
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,53 +12,53 @@
"format": "prettier --write src/"
},
"dependencies": {
"@vueuse/core": "^10.4.1",
"@vueuse/router": "^10.7.2",
"@vueuse/core": "^10.11.0",
"@vueuse/router": "^10.11.0",
"animate.css": "^4.1.1",
"artplayer": "^5.1.6",
"artplayer-plugin-danmuku": "^5.1.4",
"artplayer-plugin-dash-quality": "^2.0.0",
"artplayer-plugin-hls-quality": "^2.0.0",
"axios": "^1.6.0",
"axios": "^1.7.2",
"crypto-js": "^4.2.0",
"dashjs": "^4.7.4",
"element-plus": "^2.3.8",
"gsap": "^3.12.2",
"hls.js": "^1.5.9",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"element-plus": "^2.7.5",
"gsap": "^3.12.5",
"hls.js": "^1.5.11",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"libass-wasm": "^4.1.0",
"lodash": "^4.17.21",
"mpegts.js": "^1.7.3",
"nprogress": "^0.2.0",
"pinia": "^2.1.4",
"pinia": "^2.1.7",
"qrcode-vue3": "^1.6.8",
"ts-proto": "^1.161.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"ts-proto": "^1.178.0",
"vue": "^3.4.27",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@tsconfig/node18": "^18.2.2",
"@types/crypto-js": "^4.2.1",
"@types/node": "^20.11.16",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^4.2.3",
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node18": "^18.2.4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.14.2",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.44.0",
"eslint-plugin-vue": "^9.15.1",
"lightningcss": "^1.23.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.26.0",
"lightningcss": "^1.25.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.2",
"vue-tsc": "^1.8.4"
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "~5.4.5",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.13",
"vue-tsc": "^2.0.21"
}
}

View File

@ -1,3 +1,9 @@
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v1.180.0
// protoc v5.27.0
// source: src/proto/message.proto
/* eslint-disable */
import Long from "long";
import _m0 from "protobufjs/minimal";
@ -314,7 +320,7 @@ function createBaseMovieStatus(): MovieStatus {
export const MovieStatus = {
encode(message: MovieStatus, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
if (message.playing === true) {
if (message.playing !== false) {
writer.uint32(8).bool(message.playing);
}
if (message.seek !== 0) {
@ -373,7 +379,7 @@ export const MovieStatus = {
toJSON(message: MovieStatus): unknown {
const obj: any = {};
if (message.playing === true) {
if (message.playing !== false) {
obj.playing = message.playing;
}
if (message.seek !== 0) {
@ -760,6 +766,9 @@ function longToNumber(long: Long): number {
if (long.gt(globalThis.Number.MAX_SAFE_INTEGER)) {
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
}
if (long.lt(globalThis.Number.MIN_SAFE_INTEGER)) {
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
}
return long.toNumber();
}