
* Delete api * Fixes circular dependencies * Revert "Delete api" This reverts commit 174177a8331fc376b2dc7abda2c7adc56b24dd60. * Delete _metadata.ts * Update metadata.ts
25 lines
602 B
TypeScript
25 lines
602 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "CalDav Server",
|
|
description: _package.description,
|
|
installed: true,
|
|
type: "caldav_calendar",
|
|
title: "CalDav Server",
|
|
imageSrc: "/api/app-store/caldavcalendar/icon.svg",
|
|
variant: "calendar",
|
|
category: "calendar",
|
|
logo: "/api/app-store/caldavcalendar/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 5,
|
|
reviews: 69,
|
|
slug: "caldav-calendar",
|
|
trending: false,
|
|
url: "https://cal.com/",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
} as App;
|
|
|
|
export default metadata;
|