mirror of
https://github.com/kunkunsh/kunkun-ext-speech-to-text.git
synced 2025-04-03 17:56:43 +00:00

- Added project configuration files (tsconfig, eslint, vite, etc.) - Implemented Svelte5 frontend with routing - Created Deno backend for audio transcription using OpenAI Whisper - Added preferences page for API key configuration - Configured Tailwind CSS and theming - Implemented file selection and transcription functionality
12 lines
251 B
JSON
12 lines
251 B
JSON
{
|
|
"tasks": {
|
|
"dev": "deno run --watch main.ts"
|
|
},
|
|
"imports": {
|
|
"@kunkun/api": "jsr:@kunkun/api@^0.1.0",
|
|
"@openai/openai": "jsr:@openai/openai@^4.83.0",
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"openai": "npm:openai@^4.83.0"
|
|
}
|
|
}
|