Files
stream.ui/package.json
Mr.Dat 5fc4bef5be feat: Update Vite configuration and add new public routes
- Refactored vite.config.ts to update entry points and improve plugin configuration.
- Added Home.vue as the landing page with a modern design and features overview.
- Created Layout.vue for consistent header and footer across public routes.
- Implemented Privacy.vue and Terms.vue for legal documentation with structured content.
- Introduced gRPC and service index files for future service implementations.
- Developed createVueApp.ts for application setup with PrimeVue and Pinia.
- Enhanced SSR rendering in ssrRender.ts for improved performance and SEO.
2026-01-06 15:39:38 +07:00

42 lines
1.2 KiB
JSON

{
"name": "holistream",
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"build": "bunx --bun vite build && bun build dist/server/index.js --target bun --minify --outdir dist",
"preview": "bunx --bun vite preview"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.946.0",
"@aws-sdk/s3-presigned-post": "^3.946.0",
"@aws-sdk/s3-request-presigner": "^3.946.0",
"@hiogawa/tiny-rpc": "^0.2.3-pre.18",
"@hiogawa/utils": "^1.7.0",
"@primeuix/themes": "^2.0.2",
"@primevue/forms": "^4.5.4",
"@unhead/vue": "^2.1.1",
"is-mobile": "^5.0.0",
"@vueuse/core": "^14.1.0",
"clsx": "^2.1.1",
"hono": "^4.11.3",
"pinia": "^3.0.4",
"primevue": "^4.5.4",
"vue": "^3.5.26",
"vue-router": "^4.6.4",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.2"
},
"devDependencies": {
"@hattip/adapter-node": "^0.0.49",
"@primevue/auto-import-resolver": "^4.5.4",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.3",
"unocss": "^66.5.12",
"unplugin-auto-import": "^20.3.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.3.0",
"vite-ssr-components": "^0.5.2"
}
}