Initial working translator implementation

This commit is contained in:
burnintuna 2026-07-30 14:53:36 +09:00
commit 9439858b11
35 changed files with 5365 additions and 0 deletions

29
frontend/package.json Normal file
View file

@ -0,0 +1,29 @@
{
"name": "llm-translator-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"pinia": "^2.3.0",
"vue": "^3.5.0",
"axios": "^1.7.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "~5.7.0",
"vite": "^6.1.0",
"vue-tsc": "^2.2.0"
},
"allowScripts": {
"esbuild@0.25.12": true,
"vue-demi@0.14.10": true
}
}