2
0
Files
2024-08-09 00:39:27 +02:00

25 lines
683 B
TypeScript

import { validJson } from "@calcom/lib/jsonUtils";
import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Google Calendar",
description: _package.description,
installed: !!(process.env.GOOGLE_API_CREDENTIALS && validJson(process.env.GOOGLE_API_CREDENTIALS)),
type: "google_calendar",
title: "Google Calendar",
variant: "calendar",
category: "calendar",
categories: ["calendar"],
logo: "icon.svg",
publisher: "BLS media",
slug: "google-calendar",
url: "https://bls.media/",
email: "hello@bls-media.de",
dirName: "googlecalendar",
isOAuth: true,
} as AppMeta;
export default metadata;