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
15 lines
278 B
JSON
15 lines
278 B
JSON
{
|
|
"$schema": "https://shadcn-svelte.com/schema.json",
|
|
"style": "new-york",
|
|
"tailwind": {
|
|
"config": "tailwind.config.ts",
|
|
"css": "src/app.css",
|
|
"baseColor": "neutral"
|
|
},
|
|
"aliases": {
|
|
"components": "$lib/components",
|
|
"utils": "$lib/utils"
|
|
},
|
|
"typescript": true
|
|
}
|