Skip to main content

mix.exs

defmodule VishaloAi.MixProject do
  use Mix.Project

  def project do
    [
      app: :vishalo_ai,
      version: "0.1.0",
      elixir: ">= 1.12.0",
      start_permanent: Mix.env() == :prod,
      deps: [],
      description: "Links and metadata for VisHalo AI: https://vishalo.com/",
      package: package()
    ]
  end

  def application, do: [extra_applications: [:logger]]

  defp package do
    [
      licenses: ["MIT"],
      links: %{
        "Homepage" => "https://vishalo.com/",
        "Seedance 2.1" => "https://vishalo.com/seedance-2-1",
        "Seedance 2.5" => "https://vishalo.com/seedance-2-5",
        "Meigen Gallery" => "https://vishalo.com/meigen-gallery",
        "AI Image Upscaler" => "https://vishalo.com/ai/image-upscaler",
        "AI Background Remover" => "https://vishalo.com/ai/background-remover",
        "GitHub Resources" => "https://github.com/eavemma5-tech/vishalo-ai-resources",
        "GitHub Pages" => "https://eavemma5-tech.github.io/vishalo-ai-resources/"
      }
    ]
  end
end