chore: add package files and Nuxt sconfig.json

This commit is contained in:
SauceyRed 2025-05-01 04:28:41 +02:00
parent 3d3a8a57d5
commit 7fddd9387b
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
4 changed files with 8372 additions and 0 deletions

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/fonts": "0.11.2",
"@nuxt/image": "1.10.0",
"nuxt": "^3.17.1",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}

8346
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

2
pnpm-workspace.yaml Normal file
View file

@ -0,0 +1,2 @@
onlyBuiltDependencies:
- sharp

4
tsconfig.json Normal file
View file

@ -0,0 +1,4 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}