chore: update deps

This commit is contained in:
Anthony Fu 2023-03-04 15:34:49 +01:00
parent 428eddafc6
commit b2ebf5d95a
3 changed files with 1963 additions and 855 deletions

View File

@ -1,6 +1,6 @@
{ {
"private": true, "private": true,
"packageManager": "pnpm@7.12.0", "packageManager": "pnpm@7.28.0",
"scripts": { "scripts": {
"build": "vite build", "build": "vite build",
"dev": "vite --port 3333 --open", "dev": "vite --port 3333 --open",
@ -8,34 +8,43 @@
"typecheck": "vue-tsc --noEmit", "typecheck": "vue-tsc --noEmit",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest", "test": "vitest",
"up": "taze major -I" "up": "taze major -I",
"postinstall": "npx simple-git-hooks"
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^9.11.0", "@vueuse/core": "^9.13.0",
"vue": "^3.2.45", "vue": "^3.2.47",
"vue-router": "^4.1.6" "vue-router": "^4.1.6"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.34.1", "@antfu/eslint-config": "^0.36.0",
"@iconify-json/carbon": "^1.1.13", "@iconify-json/carbon": "^1.1.16",
"@types/node": "^18.11.18", "@types/node": "^18.14.6",
"@unocss/reset": "^0.48.4", "@unocss/reset": "^0.50.3",
"@vitejs/plugin-vue": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0",
"@vue-macros/volar": "^0.5.15", "@vue-macros/volar": "^0.8.4",
"@vue/test-utils": "^2.2.7", "@vue/test-utils": "^2.3.0",
"eslint": "^8.32.0", "eslint": "^8.35.0",
"jsdom": "^21.0.0", "jsdom": "^21.1.0",
"pnpm": "^7.25.1", "lint-staged": "^13.1.2",
"taze": "^0.8.5", "pnpm": "^7.28.0",
"typescript": "^4.9.4", "simple-git-hooks": "^2.8.1",
"unocss": "^0.48.4", "taze": "^0.9.0",
"unplugin-auto-import": "^0.12.1", "typescript": "^4.9.5",
"unplugin-vue-components": "^0.22.12", "unocss": "^0.50.3",
"unplugin-vue-macros": "^1.4.2", "unplugin-auto-import": "^0.15.0",
"vite": "^4.0.4", "unplugin-vue-components": "^0.24.0",
"unplugin-vue-macros": "^1.9.1",
"vite": "^4.1.4",
"vite-plugin-pages": "^0.28.0", "vite-plugin-pages": "^0.28.0",
"vitest": "^0.27.2", "vitest": "^0.29.2",
"vue-tsc": "^1.0.24" "vue-tsc": "^1.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}, },
"eslintConfig": { "eslintConfig": {
"extends": "@antfu" "extends": "@antfu"

2763
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
/// <reference types="vitest" /> /// <reference types="vitest" />
import path from 'path' import path from 'node:path'
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'