aboutsummaryrefslogtreecommitdiffstats
path: root/ui/package.json
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-04-11 16:59:01 +0100
committerGitHub <noreply@github.com>2024-04-11 16:59:01 +0100
commit6cd4319fcf540ef70f74cc2f10d0d4297ee7b788 (patch)
tree3d24dbf70493c377e162d9941faac65c829623f9 /ui/package.json
parentfeat(bash/blesh): use _ble_exec_time_ata for duration even in bash < 5 (#1940) (diff)
downloadatuin-6cd4319fcf540ef70f74cc2f10d0d4297ee7b788.zip
feat(gui): add base structure (#1935)
* initial * ui things * cargo * update, add history refresh button * history page a bit better, add initial dotfiles page * re-org layout * bye squigglies * add dotfiles ui, show aliases * add default shell detection * put stats in a little drawer, alias import changes * use new table for aliases, add alias deleting * support adding aliases * close drawer when added, no alias autocomplete * clippy, format * attempt to ensure gdk is installed ok * sudo * no linux things on mac ffs * I forgot we build for windows too... end of day * remove tauri backend from workspace
Diffstat (limited to 'ui/package.json')
-rw-r--r--ui/package.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/ui/package.json b/ui/package.json
new file mode 100644
index 00000000..126adabe
--- /dev/null
+++ b/ui/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "ui",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc && vite build",
+ "preview": "vite preview",
+ "tauri": "tauri"
+ },
+ "dependencies": {
+ "@headlessui/react": "^1.7.18",
+ "@heroicons/react": "^2.1.3",
+ "@radix-ui/react-dropdown-menu": "^2.0.6",
+ "@radix-ui/react-slot": "^1.0.2",
+ "@tailwindcss/forms": "^0.5.7",
+ "@tanstack/react-table": "^8.15.3",
+ "@tauri-apps/api": "2.0.0-beta.7",
+ "class-variance-authority": "^0.7.0",
+ "clsx": "^2.1.0",
+ "core": "link:@tauri-apps/api/core",
+ "highlight.js": "^11.9.0",
+ "lucide-react": "^0.367.0",
+ "luxon": "^3.4.4",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-spinners": "^0.13.8",
+ "recharts": "^2.12.4",
+ "tailwind-merge": "^2.2.2",
+ "tailwindcss-animate": "^1.0.7",
+ "vaul": "^0.9.0"
+ },
+ "devDependencies": {
+ "@tauri-apps/cli": "2.0.0-beta.2",
+ "@types/react": "^18.2.74",
+ "@types/react-dom": "^18.2.24",
+ "@vitejs/plugin-react": "^4.2.1",
+ "autoprefixer": "^10.4.19",
+ "postcss": "^8.4.38",
+ "tailwindcss": "^3.4.3",
+ "typescript": "^5.4.3",
+ "vite": "^5.2.8",
+ "vite-tsconfig-paths": "^4.3.2"
+ }
+}