package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "hoppscotch-desktop",
  3. "private": true,
  4. "version": "25.2.0-0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vue-tsc --noEmit && vite build",
  9. "preview": "vite preview",
  10. "tauri": "tauri",
  11. "dev:full": "(cd ../hoppscotch-selfhost-web && pnpm install && pnpm generate) && (cd crates/webapp-bundler && cargo build --release && cd target/release && ./webapp-bundler --input ../../../../../hoppscotch-selfhost-web/dist --output ../../../../bundle.zip --manifest ../../../../manifest.json) && (cd src-tauri && pnpm tauri dev)",
  12. "build:full": "(cd ../hoppscotch-selfhost-web && pnpm install && pnpm generate) && (cd crates/webapp-bundler && cargo build --release && cd target/release && ./webapp-bundler --input ../../../../../hoppscotch-selfhost-web/dist --output ../../../../bundle.zip --manifest ../../../../manifest.json) && (cd src-tauri && pnpm tauri build)"
  13. },
  14. "dependencies": {
  15. "@fontsource-variable/inter": "5.1.0",
  16. "@fontsource-variable/material-symbols-rounded": "5.1.3",
  17. "@fontsource-variable/roboto-mono": "5.1.0",
  18. "@hoppscotch/kernel": "workspace:^",
  19. "@hoppscotch/plugin-appload": "github:CuriousCorrelation/tauri-plugin-appload",
  20. "@hoppscotch/ui": "0.2.1",
  21. "@tauri-apps/api": "2.1.1",
  22. "@tauri-apps/plugin-process": "2.2.0",
  23. "@tauri-apps/plugin-shell": "2.0.1",
  24. "@tauri-apps/plugin-store": "2.2.0",
  25. "@tauri-apps/plugin-updater": "2.5.1",
  26. "@vueuse/core": "11.1.0",
  27. "fp-ts": "2.16.9",
  28. "vue": "^3.3.4",
  29. "vue-router": "4.4.5",
  30. "vue-tippy": "6.5.0"
  31. },
  32. "devDependencies": {
  33. "@iconify-json/lucide": "1.2.10",
  34. "@tauri-apps/cli": "^2",
  35. "@vitejs/plugin-vue": "^5.0.5",
  36. "autoprefixer": "10.4.20",
  37. "postcss": "8.4.49",
  38. "sass": "1.80.3",
  39. "tailwindcss": "3.4.14",
  40. "typescript": "^5.2.2",
  41. "unplugin-icons": "0.19.3",
  42. "unplugin-vue-components": "0.27.4",
  43. "vite": "^5.3.1",
  44. "vue-tsc": "^2.2.0"
  45. }
  46. }