22 lines
505 B
TypeScript
22 lines
505 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Feishu Calendar",
|
|
description: _package.description,
|
|
installed: true,
|
|
type: "feishu_calendar",
|
|
title: "Feishu Calendar",
|
|
variant: "calendar",
|
|
categories: ["calendar"],
|
|
logo: "icon.svg",
|
|
publisher: "Feishu",
|
|
slug: "feishu-calendar",
|
|
url: "https://feishu.cn/",
|
|
email: "alan@larksuite.com",
|
|
dirName: "feishucalendar",
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|