Files
sori.studio/package.json
zenn ed7709ab59 fix(nuxt): Node용 #internal/nuxt/paths 해석 및 paths.mjs 디스크 기록
- app:templates에서 paths.mjs에 write: true를 부여하는 로컬 모듈 추가
- 루트 package.json imports로 .nuxt/paths.mjs 매핑
- nuxt ^3.21.2로 명시, 문서(v0.0.59) 반영

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-11 12:25:19 +09:00

25 lines
614 B
JSON

{
"name": "sori.studio",
"version": "0.0.59",
"private": true,
"type": "module",
"imports": {
"#internal/nuxt/paths": "./.nuxt/paths.mjs"
},
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "nuxt build",
"preview": "nuxt preview --dotenv .env.development --host 127.0.0.1 --port 43117",
"db:migrate:dev": "node scripts/migrate-development-db.js",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.14.0",
"nuxt": "^3.21.2",
"postgres": "^3.4.9",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"zod": "^3.24.2"
}
}