README.md

# JsonPtr

Toolkit for JSONPointer.  Note that the module name is `JsonPtr` but the app name is `:json_ptr`.

## Installation

The package can be installed by adding `json_ptr` to your list of dependencies in `mix.exs`:

```elixir
def deps do
  [
    {:json_ptr, "~> 1.3.0"}
  ]
end
```

For Elixir versions before 1.18, you'll also need to add `jason` as a dependency since the built-in `JSON` module is not available.

## Documentation

Documentation can be found at https://hexdocs.pm/json_ptr.