Current section
Files
Jump to
Current section
Files
layout_builder
mix.exs
mix.exs
defmodule LayoutBuilder.MixProject do
use Mix.Project
@url "https://git.sr.ht/~conciergerie-dev/layout_builder_ex"
def project do
[
app: :layout_builder,
version: "0.5.1",
description: "Simple layout builder that allows you to create, store and show layout based of rows and cols",
elixir: "~> 1.13",
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: @url,
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, "~> 3.0"},
{:phoenix_live_view, "~> 0.18"},
{:jason, "~> 1.0", only: [:test]},
{:petal_components, "~> 0.18"},
{:gettext, "~> 0.18"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", 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
def package() do
[
maintainers: ["Nicolas Kempf Le Stanc"],
licenses: ["MIT"],
links: %{"Sourcehut" => @url},
files:
~w(lib priv LICENSE.md mix.exs README.md .formatter.exs)
]
end
end