Packages
Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.
Current section
Files
Jump to
Current section
Files
lib/json/mix.exs
defmodule JSON.MixProject do
use Mix.Project
def project do
[
app: :json,
version: "1.4.2",
elixir: "~> 1.0",
description:
"Raxol's fork of the JSON parser and generator in pure Elixir",
package: package(),
deps: []
]
end
def application do
[applications: []]
end
defp package do
[
maintainers: ["hydepwns"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/hydepwns/elixir-json"}
]
end
end