Files
firezone/rust/gui-client/package.json
Thomas Eizinger d16ffe5f0f chore(gui-client): make better use of vite as a bundler (#9148)
We already use `vite` as a bundling tool but only to rollup some of the
pre-built files. This setup (and therefore our buildscripts) can be
massively simplified by instructing `vite` to also build our TypeScript
code and compile tailwind.

This makes it much easier to develop locally because one only needs to
run `pnpm vite build --watch` to keep everything up to date.
2025-05-15 04:06:03 +00:00

36 lines
917 B
JSON

{
"name": "firezone-gui-client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "run-script-os",
"build:win32": "call build.bat",
"build:darwin:linux": "./build.sh",
"build-debug": "run-script-os",
"build-debug:win32": "call build-debug.bat",
"dev": "run-script-os",
"dev:win32": "call dev.bat",
"dev:darwin:linux": "./dev.sh",
"tauri": "tauri"
},
"dependencies": {
"@tailwindcss/cli": "^4.1.5",
"@tauri-apps/api": "^2.5.0",
"flowbite": "^3.1.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@tailwindcss/vite": "^4.1.6",
"@tauri-apps/cli": "^2.5.0",
"@types/node": "^22.15.3",
"http-server": "^14.1.1",
"run-script-os": "^1.1.6",
"tailwindcss": "^4.1.5",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vite-plugin-typescript": "^1.0.4"
}
}