27 lines
642 B
TypeScript
27 lines
642 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Lark Calendar",
|
|
description: _package.description,
|
|
installed: true,
|
|
type: "lark_calendar",
|
|
title: "Lark Calendar",
|
|
imageSrc: "/api/app-store/larkcalendar/icon.svg",
|
|
variant: "calendar",
|
|
categories: ["calendar"],
|
|
logo: "/api/app-store/larkcalendar/icon.svg",
|
|
publisher: "Lark",
|
|
rating: 5,
|
|
reviews: 69,
|
|
slug: "lark-calendar",
|
|
trending: false,
|
|
url: "https://larksuite.com/",
|
|
verified: true,
|
|
email: "alan@larksuite.com",
|
|
dirName: "larkcalendar",
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|