Files
continuum-app/apps/web/package.json
T
octoturge 9cb59d723e Fix desktop crate build; simplify tray/menu and telemetry reconnect
Real bugs found by actually compiling the Tauri crate for the first time:
- Cargo.toml declared a [lib] with no src/lib.rs (cargo refused to parse
  the manifest) — added the standard Tauri 2 main.rs/lib.rs split.
- generate_context!() needs real icon files; icons/ only had a .gitkeep.
  Added placeholder PNG/ICO/ICNS icons.

Also simplified: dropped the tray icon + menu (one more moving part not
needed yet), and the telemetry store's exponential backoff is now a fixed
3s retry, matching the same simplification made to continuum-proxy's
uplink client.

Fixed two real TS bugs while typechecking apps/web for the first time
(missing @types/node for nuxt.config.ts's process.env access, untyped
useFetch call inferring 'never'). Verified: cargo check (desktop),
vue-tsc --noEmit (web + ui packages) all clean.
2026-08-28 18:33:40 +00:00

28 lines
587 B
JSON

{
"name": "@continuum/web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"lint": "eslint ."
},
"dependencies": {
"@continuum/ui": "workspace:*",
"@nuxtjs/supabase": "^1.4.0",
"@pinia/nuxt": "^0.5.5",
"nuxt": "^3.13.0",
"pinia": "^2.2.2",
"vue": "^3.5.0",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.7.4",
"typescript": "^5.6.2"
}
}