Packages

Elixir renderer for the A2UI v0.9 protocol — server-driven UI over Phoenix LiveView

Current section

Files

Jump to
a2ui mix.exs
Raw

mix.exs

defmodule A2UI.MixProject do
use Mix.Project
@version "0.2.0"
@source_url "https://github.com/actioncard/a2ui-elixir"
def project do
[
app: :a2ui,
version: @version,
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
package: package(),
docs: docs(),
name: "A2UI",
description:
"Elixir renderer for the A2UI v0.9 protocol — server-driven UI over Phoenix LiveView",
source_url: @source_url,
homepage_url: @source_url,
dialyzer: [plt_local_path: "priv/plts"]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:dev), do: ["lib", "dev/demo"]
defp elixirc_paths(:test), do: ["lib", "test/support", "dev/demo"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:jason, "~> 1.4"},
{:phoenix_live_view, "~> 1.0"},
{:phoenix_html, "~> 4.0"},
{:floki, "~> 0.36", only: :test},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:bandit, "~> 1.0", only: :dev},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:bun, "~> 2.0", only: [:dev, :test], runtime: false},
{:a2a, "~> 0.2", optional: true},
{:req, "~> 0.5", only: [:dev, :test]}
]
end
def cli do
[preferred_envs: [precommit: :test]]
end
defp aliases do
[
quality: ["format --check-formatted", "credo --strict", "dialyzer"],
precommit: [
"compile --warnings-as-errors",
"deps.unlock --unused",
"format",
"test",
"bun test"
],
"test.js": ["bun test"],
"test.all": ["test", "bun test"],
"test.ci": ["test --warnings-as-errors", "bun test"]
]
end
defp package do
[
name: "a2ui",
maintainers: ["Action Card AB"],
licenses: ["Apache-2.0"],
files:
~w(lib priv/static .formatter.exs mix.exs README.md LICENSE CHANGELOG.md CONTRIBUTING.md SPEC.md),
links: %{
"GitHub" => @source_url,
"A2UI Spec" => "https://a2ui.org/specification/v0.9-a2ui/"
}
]
end
defp docs do
[
main: "A2UI",
extras: ["README.md", "CHANGELOG.md", "CONTRIBUTING.md", "SPEC.md", "LICENSE"],
groups_for_modules: [
Core: [~r/^A2UI$/, A2UI.Agent, A2UI.Connection, A2UI.Catalog],
"Surface & Rendering": [
A2UI.Surface,
A2UI.SurfaceManager,
A2UI.Component,
A2UI.ComponentTree,
A2UI.ComponentRenderer
],
Protocol: [~r/A2UI\.Protocol/],
Components: [~r/A2UI\.Components/],
"Data Model": [~r/A2UI\.DataModel/],
LiveView: [~r/A2UI\.Live/],
Transport: [~r/A2UI\.Transport/],
"Plug (SSE + JSON-RPC)": [~r/A2UI\.Plug/],
"A2A Integration": [A2UI.A2A]
]
]
end
end