Packages

Metadata, keyword, deep-link, and SEO helper package for Viddi AI (https://viddiai.com), the all-in-one AI creative agent for video, image, and music generation.

Current section

Files

Jump to
Raw

mix.exs

defmodule ViddiaiCom.MixProject do
use Mix.Project
def project do
[
app: :viddiai_com,
version: "0.1.0",
elixir: "~> 1.15",
description: "Metadata, keyword, deep-link, and SEO helper package for Viddi AI (https://viddiai.com), the all-in-one AI creative agent for video, image, and music generation.",
package: package(),
docs: [
main: "ViddiaiCom",
source_url: "https://github.com/youram470-art/viddiai-com-hex",
homepage_url: "https://viddiai.com"
]
]
end
def application do
[]
end
defp package do
[
licenses: ["MIT"],
links: %{
"Homepage" => "https://viddiai.com",
"GitHub" => "https://github.com/youram470-art/viddiai-com-hex",
"Docs" => "https://viddiai.com/docs"
}
]
end
end