import { defineConfig } from "@phreshos/core" export default defineConfig({ identity: "phresh", name: "Phresh Program", description: "A minimal counter with direct Client and Server endpoints.", version: "0.1.42", icon: "icon.png", categories: ["Development"], keywords: ["example", "counter", "client", "server"], website: "https://github.com/PhreshOS/phresh-program", buildCommand: "vite-node scripts/build.ts", server: { location: "dist/server", worker: "main.js", devCommand: "vite-node server/main.ts" }, client: { location: "dist/client", title: "Phresh Program", size: { width: 600, height: 500 }, devCommand: "vite --config vite.client.ts" } })