Current section

Files

Jump to
Raw

mix.exs

defmodule SelectoComponents.MixProject do
use Mix.Project
def project do
[
app: :selecto_components,
version: "0.2.2",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: "LiveView Components for Selecto",
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.6"},
{:phoenix_live_view, "~> 0.18"},
{:selecto, "~> 0.1.2"},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/seeken/selecto_components"},
source_url: "https://github.com/seeken/selecto_components"
]
end
end