29 lines
706 B
TypeScript
29 lines
706 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Giphy",
|
|
description: _package.description,
|
|
installed: true,
|
|
categories: ["other"],
|
|
// If using static next public folder, can then be referenced from the base URL (/).
|
|
imageSrc: "/api/app-store/giphy/icon.svg",
|
|
logo: "/api/app-store/giphy/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 0,
|
|
reviews: 0,
|
|
slug: "giphy",
|
|
title: "Giphy",
|
|
trending: true,
|
|
type: "giphy_other",
|
|
url: "https://cal.com/apps/giphy",
|
|
variant: "other",
|
|
verified: true,
|
|
extendsFeature: "EventType",
|
|
email: "help@cal.com",
|
|
dirName: "giphy",
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|