-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "vue-translation-app",
"version": "1.0.0",
"description": "A Vue.js translation app with audio input and Libre Translate API",
"main": "index.js",
"scripts": {
"dev": "vite",
"dev:go": "docker compose -f docker-compose.dev.yml up --build gowhisper",
"dev:go:local": "bash gowhisper/scripts/dev-go.sh",
"models:tiny": "mkdir -p gowhisper/models && curl -L --fail -o gowhisper/models/ggml-tiny.bin https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-tiny.bin",
"models:base": "mkdir -p gowhisper/models && curl -L --fail -o gowhisper/models/ggml-base.bin https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.bin",
"models:turbo": "mkdir -p gowhisper/models && curl -L --fail -o gowhisper/models/ggml-large-v3-turbo.bin https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"serve": "vite preview",
"type-check": "vue-tsc --noEmit"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@vueuse/core": "^11.3.0",
"axios": "^1.12.2",
"vue": "^3.5.22"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.4",
"vite": "^5.4.20",
"typescript": "^5.6.0",
"vue-tsc": "^2.1.0",
"@types/node": "^22.0.0"
},
"keywords": [
"vue",
"translation",
"libre-translate",
"audio",
"speech-to-text"
],
"author": "Obiente",
"license": "MIT"
}