chore: update dependencies

This commit is contained in:
pany
2025-10-13 10:26:08 +08:00
parent 12feed10cb
commit 05442059af
3 changed files with 1772 additions and 1723 deletions

View File

@@ -16,46 +16,46 @@
},
"dependencies": {
"@vant/touch-emulator": "1.4.0",
"axios": "1.10.0",
"dayjs": "1.11.13",
"axios": "1.12.2",
"dayjs": "1.11.18",
"js-cookie": "3.0.5",
"lodash-es": "4.17.21",
"normalize.css": "8.0.1",
"pinia": "3.0.3",
"unocss": "66.3.3",
"unocss": "66.5.3",
"vant": "4.9.21",
"vconsole": "3.15.1",
"vue": "3.5.17",
"vue-i18n": "11.1.10",
"vue": "3.5.22",
"vue-i18n": "11.1.12",
"vue-router": "4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "4.17.0",
"@antfu/eslint-config": "5.4.1",
"@types/js-cookie": "3.0.6",
"@types/lodash-es": "4.17.12",
"@types/node": "24.0.14",
"@types/node": "24.7.1",
"@types/nprogress": "0.2.3",
"@unocss/preset-rem-to-px": "66.3.3",
"@unocss/preset-rem-to-px": "66.5.3",
"@vant/auto-import-resolver": "1.3.0",
"@vitejs/plugin-legacy": "7.0.0",
"@vitejs/plugin-vue": "6.0.0",
"@vitejs/plugin-legacy": "7.2.1",
"@vitejs/plugin-vue": "6.0.1",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.21",
"eslint": "9.31.0",
"eslint-plugin-format": "1.0.1",
"happy-dom": "18.0.1",
"eslint": "9.37.0",
"eslint-plugin-format": "1.0.2",
"happy-dom": "20.0.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"lint-staged": "16.2.4",
"nprogress": "0.2.0",
"postcss-mobile-forever": "5.0.0",
"typescript": "5.8.3",
"unplugin-auto-import": "19.3.0",
"unplugin-vue-components": "28.8.0",
"vite": "7.0.4",
"vite-plugin-pwa": "1.0.1",
"typescript": "5.9.3",
"unplugin-auto-import": "20.2.0",
"unplugin-vue-components": "29.1.0",
"vite": "7.1.9",
"vite-plugin-pwa": "1.0.3",
"vite-svg-loader": "5.1.0",
"vitest": "3.2.4",
"vue-tsc": "3.0.1"
"vue-tsc": "3.1.1"
},
"lint-staged": {
"*": "eslint --fix"

3451
pnpm-lock.yaml generated
View File

File diff suppressed because it is too large Load Diff

View File

@@ -19,12 +19,14 @@ declare global {
const getActivePinia: typeof import('pinia')['getActivePinia']
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
const getCurrentScope: typeof import('vue')['getCurrentScope']
const getCurrentWatcher: typeof import('vue')['getCurrentWatcher']
const h: typeof import('vue')['h']
const inject: typeof import('vue')['inject']
const isProxy: typeof import('vue')['isProxy']
const isReactive: typeof import('vue')['isReactive']
const isReadonly: typeof import('vue')['isReadonly']
const isRef: typeof import('vue')['isRef']
const isShallow: typeof import('vue')['isShallow']
const mapActions: typeof import('pinia')['mapActions']
const mapGetters: typeof import('pinia')['mapGetters']
const mapState: typeof import('pinia')['mapState']
@@ -84,6 +86,6 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
import('vue')
}