Fix god awful dependency errors
This commit is contained in:
Generated
+3602
-8652
File diff suppressed because it is too large
Load Diff
+21
-26
@@ -12,46 +12,41 @@
|
|||||||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
|
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@intlify/unplugin-vue-i18n": "^0.11.0",
|
"@intlify/unplugin-vue-i18n": "^11.0.0",
|
||||||
"@tailwindcss/forms": "^0.5.3",
|
"@tailwindcss/forms": "^0.5.3",
|
||||||
"@types/vue-i18n": "^7.0.0",
|
|
||||||
"hls.js": "^1.4.10",
|
"hls.js": "^1.4.10",
|
||||||
"oh-vue-icons": "^1.0.0-rc3",
|
"oh-vue-icons": "^1.0.0-rc3",
|
||||||
"register-service-worker": "^1.7.2",
|
"register-service-worker": "^1.7.2",
|
||||||
"video.js": "^8.0.4",
|
"video.js": "^8.0.4",
|
||||||
"videojs-contrib-quality-levels": "^3.0.0",
|
"videojs-contrib-quality-levels": "^4.1.0",
|
||||||
"videojs-hls-quality-selector": "^1.1.4",
|
"videojs-hls-quality-selector": "^2.0.0",
|
||||||
"vue": "^3.3.9",
|
"vue": "^3.3.9",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^11.1.11",
|
||||||
"vue-router": "^4.1.6"
|
"vue-router": "^4.1.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@intlify/vue-i18n-loader": "^3.0.0",
|
"@intlify/vue-i18n-loader": "^5.0.1",
|
||||||
"@rushstack/eslint-patch": "^1.3.3",
|
|
||||||
"@tailwindcss/typography": "^0.5.9",
|
"@tailwindcss/typography": "^0.5.9",
|
||||||
"@tsconfig/node18": "^18.2.2",
|
"@tsconfig/node22": "^22.0.2",
|
||||||
"@types/node": "^18.18.5",
|
"@types/node": "^22.16.5",
|
||||||
"@types/video.js": "^7.3.51",
|
"@types/video.js": "^7.3.51",
|
||||||
"@types/videojs-contrib-quality-levels": "^2.0.1",
|
"@types/videojs-contrib-quality-levels": "^2.0.1",
|
||||||
"@types/videojs-hls-quality-selector": "^1.1.0",
|
"@types/videojs-hls-quality-selector": "^1.1.0",
|
||||||
"@vitejs/plugin-vue": "^4.4.0",
|
"@vitejs/plugin-vue": "^6.0.1",
|
||||||
"@vue/cli-plugin-pwa": "~5.0.0",
|
"@vue/eslint-config-prettier": "^10.2.0",
|
||||||
"@vue/eslint-config-prettier": "^8.0.0",
|
"@vue/eslint-config-typescript": "^14.6.0",
|
||||||
"@vue/eslint-config-typescript": "^12.0.0",
|
"@vue/tsconfig": "^0.8.1",
|
||||||
"@vue/tsconfig": "^0.4.0",
|
|
||||||
"autoprefixer": "^10.4.13",
|
"autoprefixer": "^10.4.13",
|
||||||
"eslint": "^8.49.0",
|
"eslint": "^9.31.0",
|
||||||
"eslint-plugin-vue": "^9.17.0",
|
"eslint-plugin-vue": "~10.4.0",
|
||||||
"git-describe": "^4.1.1",
|
"git-describe": "^4.1.1",
|
||||||
"npm-run-all2": "^6.1.1",
|
"npm-run-all2": "^8.0.4",
|
||||||
"postcss": "^8.4.21",
|
"prettier": "3.6.2",
|
||||||
"prettier": "^3.0.3",
|
"tailwindcss": "^3.4.17",
|
||||||
"tailwindcss": "^3.2.7",
|
"tailwindcss-themer": "^4.1.1",
|
||||||
"tailwindcss-themer": "^3.1.0",
|
"typescript": "^5.9.2",
|
||||||
"typescript": "~5.2.0",
|
"vite": "^7.0.6",
|
||||||
"vite": "^4.5.0",
|
"vite-plugin-vue-devtools": "^8.0.0",
|
||||||
"vite-plugin-vue-devtools": "^7.2.1",
|
"vue-tsc": "^3.0.6"
|
||||||
"vue-cli-plugin-i18n": "~2.3.2",
|
|
||||||
"vue-tsc": "^1.8.19"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-3
@@ -1,14 +1,17 @@
|
|||||||
{
|
{
|
||||||
"extends": "@tsconfig/node18/tsconfig.json",
|
"extends": "@tsconfig/node22/tsconfig.json",
|
||||||
"include": [
|
"include": [
|
||||||
"vite.config.*",
|
"vite.config.*",
|
||||||
"vitest.config.*",
|
"vitest.config.*",
|
||||||
"cypress.config.*",
|
"cypress.config.*",
|
||||||
"nightwatch.conf.*",
|
"nightwatch.conf.*",
|
||||||
"playwright.config.*"
|
"playwright.config.*",
|
||||||
|
"eslint.config.*"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"composite": true,
|
"noEmit": true,
|
||||||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
||||||
|
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "Bundler",
|
"moduleResolution": "Bundler",
|
||||||
"types": ["node"]
|
"types": ["node"]
|
||||||
|
|||||||
Reference in New Issue
Block a user