Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Jul 26, 2024
1 parent e39a1cd commit 469bb01
Show file tree
Hide file tree
Showing 4 changed files with 1,849 additions and 1,730 deletions.
31 changes: 16 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
// Enable the ESlint flat config support
// (remove this if your ESLint extension above v3.0.5)
"eslint.experimental.useFlatConfig": true,

// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,
Expand All @@ -15,16 +11,16 @@

// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
{ "rule": "style/*", "severity": "off", "fixable": true },
{ "rule": "format/*", "severity": "off", "fixable": true },
{ "rule": "*-indent", "severity": "off", "fixable": true },
{ "rule": "*-spacing", "severity": "off", "fixable": true },
{ "rule": "*-spaces", "severity": "off", "fixable": true },
{ "rule": "*-order", "severity": "off", "fixable": true },
{ "rule": "*-dangle", "severity": "off", "fixable": true },
{ "rule": "*-newline", "severity": "off", "fixable": true },
{ "rule": "*quotes", "severity": "off", "fixable": true },
{ "rule": "*semi", "severity": "off", "fixable": true }
],

// Enable eslint for all supported languages
Expand All @@ -43,6 +39,11 @@
"xml",
"gql",
"graphql",
"astro"
"astro",
"css",
"less",
"scss",
"pcss",
"postcss"
]
}
1 change: 1 addition & 0 deletions eslint.config.ts → eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import antfu from '@antfu/eslint-config'
export default antfu(
{
formatters: true,
lessOpinionated: true,
},
{
rules: {
Expand Down
44 changes: 21 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,51 +72,49 @@
}
},
"dependencies": {
"vanilla-jsoneditor": "^0.23.2",
"vue-demi": "^0.14.7"
"vanilla-jsoneditor": "^0.23.7",
"vue-demi": "^0.14.10"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@antfu/eslint-config": "^2.23.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/cross-spawn": "^6.0.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.8",
"@types/node": "^20.14.12",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.5.3",
"@vue/compiler-sfc": "^3.4.26",
"@vue/test-utils": "^2.4.5",
"axios": "^1.6.8",
"@vitejs/plugin-vue": "latest",
"@vitest/ui": "^2.0.4",
"@vue/compiler-sfc": "latest",
"@vue/test-utils": "latest",
"axios": "^1.7.2",
"case-police": "^0.6.1",
"cross-spawn": "^7.0.3",
"del": "^7.1.0",
"eslint": "npm:eslint-ts-patch@8.57.0-0",
"eslint-plugin-format": "^0.1.1",
"eslint-ts-patch": "8.57.0-0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"happy-dom": "^14.7.1",
"happy-dom": "^14.12.3",
"json-editor-vue": "workspace:*",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.2",
"lint-staged": "^15.2.7",
"lodash-es": "^4.17.21",
"lossless-json": "^4.0.1",
"magicast": "^0.3.4",
"only-allow": "^1.2.1",
"open": "^10.1.0",
"prompts": "^2.4.2",
"rollup-plugin-visualizer": "^5.12.0",
"semver": "^7.6.0",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vitepress": "^1.1.4",
"vitest": "^1.5.3",
"vue": "^3.4.26",
"typescript": "^5.5.4",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.3.5",
"vite-plugin-dts": "4.0.0-beta.1",
"vitepress": "^1.3.1",
"vitest": "^2.0.4",
"vue": "latest",
"vue-global-config": "^0.6.1",
"zhlint": "^0.8.1"
},
Expand Down
Loading

0 comments on commit 469bb01

Please sign in to comment.