mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 10:38:20 +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"
|
||||
},
|
||||
"dependencies": {
|
||||
"@intlify/unplugin-vue-i18n": "^0.8.2",
|
||||
"@vee-validate/zod": "^4.8.4",
|
||||
"@vueuse/core": "^9.13.0",
|
||||
"@vueuse/head": "^1.1.15",
|
||||
"axios": "^1.3.4",
|
||||
"@intlify/unplugin-vue-i18n": "^1.4.0",
|
||||
"@vee-validate/zod": "^4.11.8",
|
||||
"@vueuse/core": "^10.5.0",
|
||||
"@vueuse/head": "^2.0.0",
|
||||
"axios": "^1.6.0",
|
||||
"events": "^3.3.0",
|
||||
"focus-trap": "^7.3.1",
|
||||
"focus-trap-vue": "^4.0.2",
|
||||
"focus-trap": "^7.5.4",
|
||||
"focus-trap-vue": "^4.0.3",
|
||||
"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",
|
||||
"vee-validate": "^4.8.4",
|
||||
"vue": "^3.2.45",
|
||||
"vue-i18n": "9",
|
||||
"vue-router": "4",
|
||||
"vue-toast-notification": "^3.0",
|
||||
"ws": "^8.13.0",
|
||||
"zod": "^3.21.4"
|
||||
"unplugin-vue-markdown": "^0.24.3",
|
||||
"vee-validate": "^4.11.8",
|
||||
"vue": "^3.3.7",
|
||||
"vue-i18n": "^9.6.2",
|
||||
"vue-router": "^4.2.5",
|
||||
"vue-toast-notification": "^3.1.2",
|
||||
"ws": "^8.14.2",
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify/json": "^2.2.30",
|
||||
"@types/events": "^3.0.0",
|
||||
"@types/markdown-it-link-attributes": "^3.0.1",
|
||||
"@typescript-eslint/parser": "^5.54.1",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"@vue-macros/reactivity-transform": "^0.2.4",
|
||||
"@vue-macros/volar": "^0.8.4",
|
||||
"eslint": "^8.35.0",
|
||||
"eslint-plugin-vue": "^9.9.0",
|
||||
"typescript": "^4.9.3",
|
||||
"unplugin-auto-import": "^0.15.0",
|
||||
"unplugin-icons": "^0.15.3",
|
||||
"unplugin-vue-components": "^0.24.0",
|
||||
"unplugin-vue-macros": "^1.9.1",
|
||||
"vite": "^4.1.0",
|
||||
"vite-plugin-pages": "^0.28.0",
|
||||
"vite-plugin-vue-markdown": "^0.22.4",
|
||||
"vue-tsc": "^1.0.24"
|
||||
"@iconify/json": "^2.2.135",
|
||||
"@types/events": "^3.0.2",
|
||||
"@types/markdown-it-link-attributes": "^3.0.3",
|
||||
"@typescript-eslint/parser": "^6.9.1",
|
||||
"@vitejs/plugin-vue": "^4.4.0",
|
||||
"@vue-macros/reactivity-transform": "^0.3.23",
|
||||
"@vue-macros/volar": "^0.17.1",
|
||||
"eslint": "^8.52.0",
|
||||
"eslint-plugin-vue": "^9.18.1",
|
||||
"typescript": "^5.2.2",
|
||||
"unplugin-auto-import": "^0.16.7",
|
||||
"unplugin-icons": "^0.17.1",
|
||||
"unplugin-vue-components": "^0.25.2",
|
||||
"unplugin-vue-macros": "^2.6.1",
|
||||
"vite": "^4.5.0",
|
||||
"vite-plugin-pages": "^0.31.0",
|
||||
"vue-tsc": "^1.8.22"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
|
@ -62,13 +62,26 @@
|
|||
"files": "**/*.+(ts|vue)"
|
||||
}
|
||||
],
|
||||
"extends": ["plugin:vue/vue3-strongly-recommended"],
|
||||
"plugins": ["eslint-plugin-vue"],
|
||||
"extends": [
|
||||
"plugin:vue/vue3-strongly-recommended"
|
||||
],
|
||||
"plugins": [
|
||||
"eslint-plugin-vue"
|
||||
],
|
||||
"rules": {
|
||||
"semi": ["error", "always"],
|
||||
"comma-dangle": ["error", "always-multiline"],
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
],
|
||||
"comma-dangle": [
|
||||
"error",
|
||||
"always-multiline"
|
||||
],
|
||||
"no-trailing-spaces": "error",
|
||||
"quotes": ["warn", "single"],
|
||||
"quotes": [
|
||||
"warn",
|
||||
"single"
|
||||
],
|
||||
"prefer-template": "warn",
|
||||
"vue/multi-word-component-names": "off",
|
||||
"vue/html-closing-bracket-spacing": "off",
|
||||
|
@ -77,7 +90,10 @@
|
|||
"vue/max-attributes-per-line": "off",
|
||||
"vue/html-closing-bracket-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">
|
||||
import { useForm } from 'vee-validate';
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
title?: string
|
||||
validationSchema?: Record<string, string | Function>,
|
||||
sections: {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { useKeyModifier } from '@vueuse/core';
|
|||
const shiftState = $(useKeyModifier('Shift'));
|
||||
const ctrlState = $(useKeyModifier('Control'));
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
columns?: {
|
||||
heading: string,
|
||||
path: string,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
title: string,
|
||||
loading: boolean,
|
||||
columns?: {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: string,
|
||||
}>();
|
||||
let { modelValue } = $(props);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: number,
|
||||
min?: number,
|
||||
max?: number,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: string,
|
||||
}>();
|
||||
let { modelValue } = $(props);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import Vue from '@vitejs/plugin-vue';
|
||||
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 Icons from 'unplugin-icons/vite';
|
||||
|
|
Loading…
Add table
Reference in a new issue