mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
Update Dependencies
This commit is contained in:
parent
1f9c2d62df
commit
64206134ab
9 changed files with 1792 additions and 2264 deletions
|
@ -11,44 +11,44 @@
|
||||||
"lint:fix": "eslint . --fix"
|
"lint:fix": "eslint . --fix"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@intlify/unplugin-vue-i18n": "^0.8.2",
|
"@intlify/unplugin-vue-i18n": "^1.4.0",
|
||||||
"@vee-validate/zod": "^4.8.4",
|
"@vee-validate/zod": "^4.11.8",
|
||||||
"@vueuse/core": "^9.13.0",
|
"@vueuse/core": "^10.5.0",
|
||||||
"@vueuse/head": "^1.1.15",
|
"@vueuse/head": "^2.0.0",
|
||||||
"axios": "^1.3.4",
|
"axios": "^1.6.0",
|
||||||
"events": "^3.3.0",
|
"events": "^3.3.0",
|
||||||
"focus-trap": "^7.3.1",
|
"focus-trap": "^7.5.4",
|
||||||
"focus-trap-vue": "^4.0.2",
|
"focus-trap-vue": "^4.0.3",
|
||||||
"markdown-it-link-attributes": "^4.0.1",
|
"markdown-it-link-attributes": "^4.0.1",
|
||||||
"markdown-it-shiki": "^0.8.0",
|
"markdown-it-shiki": "^0.9.0",
|
||||||
"simple-jsonrpc-js": "^1.2.0",
|
"simple-jsonrpc-js": "^1.2.0",
|
||||||
"vee-validate": "^4.8.4",
|
"unplugin-vue-markdown": "^0.24.3",
|
||||||
"vue": "^3.2.45",
|
"vee-validate": "^4.11.8",
|
||||||
"vue-i18n": "9",
|
"vue": "^3.3.7",
|
||||||
"vue-router": "4",
|
"vue-i18n": "^9.6.2",
|
||||||
"vue-toast-notification": "^3.0",
|
"vue-router": "^4.2.5",
|
||||||
"ws": "^8.13.0",
|
"vue-toast-notification": "^3.1.2",
|
||||||
"zod": "^3.21.4"
|
"ws": "^8.14.2",
|
||||||
|
"zod": "^3.22.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@iconify/json": "^2.2.30",
|
"@iconify/json": "^2.2.135",
|
||||||
"@types/events": "^3.0.0",
|
"@types/events": "^3.0.2",
|
||||||
"@types/markdown-it-link-attributes": "^3.0.1",
|
"@types/markdown-it-link-attributes": "^3.0.3",
|
||||||
"@typescript-eslint/parser": "^5.54.1",
|
"@typescript-eslint/parser": "^6.9.1",
|
||||||
"@vitejs/plugin-vue": "^4.0.0",
|
"@vitejs/plugin-vue": "^4.4.0",
|
||||||
"@vue-macros/reactivity-transform": "^0.2.4",
|
"@vue-macros/reactivity-transform": "^0.3.23",
|
||||||
"@vue-macros/volar": "^0.8.4",
|
"@vue-macros/volar": "^0.17.1",
|
||||||
"eslint": "^8.35.0",
|
"eslint": "^8.52.0",
|
||||||
"eslint-plugin-vue": "^9.9.0",
|
"eslint-plugin-vue": "^9.18.1",
|
||||||
"typescript": "^4.9.3",
|
"typescript": "^5.2.2",
|
||||||
"unplugin-auto-import": "^0.15.0",
|
"unplugin-auto-import": "^0.16.7",
|
||||||
"unplugin-icons": "^0.15.3",
|
"unplugin-icons": "^0.17.1",
|
||||||
"unplugin-vue-components": "^0.24.0",
|
"unplugin-vue-components": "^0.25.2",
|
||||||
"unplugin-vue-macros": "^1.9.1",
|
"unplugin-vue-macros": "^2.6.1",
|
||||||
"vite": "^4.1.0",
|
"vite": "^4.5.0",
|
||||||
"vite-plugin-pages": "^0.28.0",
|
"vite-plugin-pages": "^0.31.0",
|
||||||
"vite-plugin-vue-markdown": "^0.22.4",
|
"vue-tsc": "^1.8.22"
|
||||||
"vue-tsc": "^1.0.24"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
@ -62,13 +62,26 @@
|
||||||
"files": "**/*.+(ts|vue)"
|
"files": "**/*.+(ts|vue)"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"extends": ["plugin:vue/vue3-strongly-recommended"],
|
"extends": [
|
||||||
"plugins": ["eslint-plugin-vue"],
|
"plugin:vue/vue3-strongly-recommended"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"eslint-plugin-vue"
|
||||||
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"semi": ["error", "always"],
|
"semi": [
|
||||||
"comma-dangle": ["error", "always-multiline"],
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"comma-dangle": [
|
||||||
|
"error",
|
||||||
|
"always-multiline"
|
||||||
|
],
|
||||||
"no-trailing-spaces": "error",
|
"no-trailing-spaces": "error",
|
||||||
"quotes": ["warn", "single"],
|
"quotes": [
|
||||||
|
"warn",
|
||||||
|
"single"
|
||||||
|
],
|
||||||
"prefer-template": "warn",
|
"prefer-template": "warn",
|
||||||
"vue/multi-word-component-names": "off",
|
"vue/multi-word-component-names": "off",
|
||||||
"vue/html-closing-bracket-spacing": "off",
|
"vue/html-closing-bracket-spacing": "off",
|
||||||
|
@ -77,7 +90,10 @@
|
||||||
"vue/max-attributes-per-line": "off",
|
"vue/max-attributes-per-line": "off",
|
||||||
"vue/html-closing-bracket-newline": "off",
|
"vue/html-closing-bracket-newline": "off",
|
||||||
"vue/singleline-html-element-content-newline": "off",
|
"vue/singleline-html-element-content-newline": "off",
|
||||||
"indent": ["error", 2]
|
"indent": [
|
||||||
|
"error",
|
||||||
|
2
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
3948
client/pnpm-lock.yaml
generated
3948
client/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useForm } from 'vee-validate';
|
import { useForm } from 'vee-validate';
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
title?: string
|
title?: string
|
||||||
validationSchema?: Record<string, string | Function>,
|
validationSchema?: Record<string, string | Function>,
|
||||||
sections: {
|
sections: {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useKeyModifier } from '@vueuse/core';
|
||||||
const shiftState = $(useKeyModifier('Shift'));
|
const shiftState = $(useKeyModifier('Shift'));
|
||||||
const ctrlState = $(useKeyModifier('Control'));
|
const ctrlState = $(useKeyModifier('Control'));
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
columns?: {
|
columns?: {
|
||||||
heading: string,
|
heading: string,
|
||||||
path: string,
|
path: string,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
title: string,
|
title: string,
|
||||||
loading: boolean,
|
loading: boolean,
|
||||||
columns?: {
|
columns?: {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
modelValue: string,
|
modelValue: string,
|
||||||
}>();
|
}>();
|
||||||
let { modelValue } = $(props);
|
let { modelValue } = $(props);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
modelValue: number,
|
modelValue: number,
|
||||||
min?: number,
|
min?: number,
|
||||||
max?: number,
|
max?: number,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
const props = defineModel<{
|
const props = defineModels<{
|
||||||
modelValue: string,
|
modelValue: string,
|
||||||
}>();
|
}>();
|
||||||
let { modelValue } = $(props);
|
let { modelValue } = $(props);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { defineConfig } from 'vite';
|
import { defineConfig } from 'vite';
|
||||||
import Vue from '@vitejs/plugin-vue';
|
import Vue from '@vitejs/plugin-vue';
|
||||||
import Pages from 'vite-plugin-pages';
|
import Pages from 'vite-plugin-pages';
|
||||||
import Markdown from 'vite-plugin-vue-markdown';
|
import Markdown from 'unplugin-vue-markdown/vite';
|
||||||
|
|
||||||
import Components from 'unplugin-vue-components/vite';
|
import Components from 'unplugin-vue-components/vite';
|
||||||
import Icons from 'unplugin-icons/vite';
|
import Icons from 'unplugin-icons/vite';
|
||||||
|
|
Loading…
Add table
Reference in a new issue