Packages

Lightweight JWT decoder for Elixir. Decodes and inspects JWTs without signature verification. Useful for debugging, logging, and introspection.

Current section

Files

Jump to
jwt_lite mix.exs
Raw

mix.exs

defmodule JwtLite.MixProject do
use Mix.Project
def project do
[
app: :jwt_lite,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Lightweight JWT decoder for Elixir. Decodes and inspects JWTs without signature verification. Useful for debugging, logging, and introspection.",
package: package(),
name: "JwtLite",
source_url: "https://github.com/digual/jwt_lite",
docs: [main: "JwtLite"]
]
end
def application do
[extra_applications: [:logger, :crypto]]
end
defp deps do
[{:jason, "~> 1.0"}]
end
defp package do
[
maintainers: ["jwtutil2026"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/digual/jwt_lite",
"Online JWT Decoder" => "https://digual.com/tools/jwt.html"
}
]
end
end