30 lines
777 B
JSON
30 lines
777 B
JSON
{
|
|
"name": "transcribe-app",
|
|
"version": "1.0.0",
|
|
"description": "Standalone transcription PWA with Web Speech API and local Whisper",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 0.0.0.0 --port 3000",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"docker:build": "docker build -t transcribe-app .",
|
|
"docker:run": "docker run -p 3000:80 transcribe-app"
|
|
},
|
|
"dependencies": {
|
|
"@xenova/transformers": "^2.17.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.4.0",
|
|
"vite-plugin-pwa": "^0.20.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|