export async function GET() { const json = require("../../../../package.json"); const response = { "status": "Healthy", "version": json.version } return new Response(JSON.stringify(response), { status: 200, headers: { "Content-Type": "application/json" } }); }