2023-06-29 15:20:23 -04:00
|
|
|
defmodule TypeID.MixProject do
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
2023-06-30 07:03:50 -04:00
|
|
|
app: :typeid_elixir,
|
2023-07-02 08:20:19 -04:00
|
|
|
version: "0.1.0",
|
2023-06-29 15:20:23 -04:00
|
|
|
elixir: "~> 1.15",
|
|
|
|
start_permanent: Mix.env() == :prod,
|
2023-06-30 07:03:50 -04:00
|
|
|
description: description(),
|
|
|
|
package: package(),
|
|
|
|
deps: deps(),
|
|
|
|
name: "TypeID Elixir",
|
|
|
|
source_url: "https://github.com/sloanelybutsurely/typeid-elixir"
|
2023-06-29 15:20:23 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def application do
|
2023-06-30 07:03:50 -04:00
|
|
|
[extra_applications: [:logger]]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp description do
|
|
|
|
"A type-safe, K-sortable, globally unique identifier inspired by Stripe IDs"
|
|
|
|
end
|
|
|
|
|
|
|
|
defp package do
|
2023-06-29 15:20:23 -04:00
|
|
|
[
|
2023-06-30 07:03:50 -04:00
|
|
|
licenses: ["MIT"],
|
|
|
|
links: %{"GitHub" => "https://github.com/sloanelybutsurely/typeid-elixir"}
|
2023-06-29 15:20:23 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp deps do
|
|
|
|
[
|
2023-06-30 07:03:50 -04:00
|
|
|
{:uniq, "~> 0.5.4"},
|
2023-07-02 08:13:02 -04:00
|
|
|
{:ex_doc, "~> 0.27", only: :dev, runtime: false},
|
|
|
|
{:yaml_elixir, "~> 2.9", only: [:dev, :test], runtime: false}
|
2023-06-29 15:20:23 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|