Files
inneratb/frontend/package.json
T
ttipo e1e18b00f7 fix: 구글 검색결과 파비콘 잘림 수정
여백 추가된 favicon.svg 기반으로 PNG/ICO 파비콘 재생성.
로고를 캔버스 중앙 영역에 배치해 구글 원형 마스크에도 안 잘리도록 함.
- sharp/png-to-ico 기반 생성 스크립트 추가 (npm run favicon)
- SVG 파비콘 링크 추가 (최신 브라우저 우선)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-10 19:50:04 +09:00

39 lines
863 B
JSON

{
"name": "frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint . --fix",
"format": "oxfmt .",
"favicon": "node scripts/gen-favicon.mjs"
},
"dependencies": {
"axios": "^1.14.0",
"nuxt": "^3.15.0",
"pinia": "^3.0.4",
"vue": "^3.5.31",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@nuxt/eslint": "^1.9.0",
"@pinia/nuxt": "^0.11.2",
"@types/node": "^24.12.0",
"eslint": "^9.18.0",
"oxfmt": "^0.42.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"typescript": "~6.0.0",
"vue-tsc": "^3.2.6"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}