diff options
| author | yum <yum.food.vr@gmail.com> | 2025-05-29 15:56:51 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-05-29 15:57:18 -0700 |
| commit | 1ede199387c072a85e8757a6aaec04d2c7cdeba4 (patch) | |
| tree | 68ecedd5f2f4c000c8f8e9045cfed7a49bdee0e4 /ui/package.json | |
| parent | 0ebc79354ace812731a5c9a0a670cecd1ea941d7 (diff) | |
Add basic electron+tailwind hello world
Diffstat (limited to 'ui/package.json')
| -rw-r--r-- | ui/package.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ui/package.json b/ui/package.json new file mode 100644 index 0000000..1c56341 --- /dev/null +++ b/ui/package.json @@ -0,0 +1,24 @@ +{ + "name": "TaSTT", + "version": "1.0.0", + "description": "Speech-to-text tool for VRChat", + "main": "index.js", + "scripts": { + "start": "npm run build:css && electron .", + "build:css": "tailwindcss -i ./src/input.css -o ./build/output.css", + "watch:css": "tailwindcss -i ./src/input.css -o ./build/output.css --watch", + "dev": "npm run watch:css & electron .", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "yum_food", + "license": "MIT", + "devDependencies": { + "autoprefixer": "^10.4.21", + "concurrently": "^9.1.2", + "cross-env": "^7.0.3", + "electron": "^36.3.2", + "postcss": "^8.5.4", + "tailwindcss": "^3.4.17" + } +} |
