use latest version of stuff maybe it will work lololol

This commit is contained in:
2024-12-08 16:33:39 +01:00
parent 9d3af3a8eb
commit 8a3ca521ed
6 changed files with 3225 additions and 19064 deletions

View File

@@ -1,4 +1,4 @@
# osu-music # pwa-player-frontend
This template should help get you started developing with Vue 3 in Vite. This template should help get you started developing with Vue 3 in Vite.
@@ -12,7 +12,7 @@ TypeScript cannot handle type information for `.vue` imports by default, so we r
## Customize configuration ## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/). See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup ## Project Setup

15513
frontend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,30 +1,29 @@
{ {
"name": "osu-music", "name": "pwa-player-frontend",
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"type": "module",
"scripts": { "scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"dev": "vite", "dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview", "preview": "vite preview",
"type-check": "vue-tsc --build --force" "build-only": "vite build",
"type-check": "vue-tsc --build"
}, },
"dependencies": { "dependencies": {
"pinia": "^2.1.7", "pinia": "^2.2.6",
"register-service-worker": "^1.7.2", "vue": "^3.5.13",
"vue": "^3.4.29", "vue-router": "^4.4.5"
"vue-router": "^4.3.3"
}, },
"devDependencies": { "devDependencies": {
"@tsconfig/node20": "^20.1.4", "@tsconfig/node22": "^22.0.0",
"@types/node": "^20.14.5", "@types/node": "^22.9.3",
"@vitejs/plugin-vue": "^5.0.5", "@vitejs/plugin-vue": "^5.2.1",
"@vue/cli-plugin-pwa": "~5.0.0", "@vue/tsconfig": "^0.7.0",
"@vue/tsconfig": "^0.5.1", "npm-run-all2": "^7.0.1",
"npm-run-all2": "^6.2.0", "typescript": "~5.6.3",
"typescript": "~5.4.0", "vite": "^6.0.1",
"vite": "^5.3.1", "vite-plugin-vue-devtools": "^7.6.5",
"vue-tsc": "^2.0.21" "vue-tsc": "^2.1.10"
}, }
"type": "module"
} }

View File

@@ -6,7 +6,6 @@
"composite": true, "composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]
} }

View File

@@ -1,5 +1,5 @@
{ {
"extends": "@tsconfig/node20/tsconfig.json", "extends": "@tsconfig/node22/tsconfig.json",
"include": [ "include": [
"vite.config.*", "vite.config.*",
"vitest.config.*", "vitest.config.*",

File diff suppressed because it is too large Load Diff