Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Hyphen.MixProject do
use Mix.Project
def project do
[
app: :hyphen,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Hyphen — tiny LiveStore-inspired helper library (prototype)",
package: package(),
homepage_url: "https://example.com/hyphen"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Hyphen.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Optional runtime deps; keep minimal for prototype
{:plug, "~> 1.14", optional: true},
{:phoenix, "~> 1.7", optional: true},
{:jason, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
files: ~w(lib mix.exs README.md),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://example.com/hyphen"}
]
end
end