chore(nuxt): scaffold Nuxt 4 + TypeScript project

This commit is contained in:
2025-08-16 09:01:41 -06:00
commit 9a1db2c58d
9 changed files with 6364 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"nuxt": "^4.0.3",
"vue": "^3.5.18",
"vue-router": "^4.5.1"
}
}