I installed elm 0.19 recently. In trying various things, I realized that ‘elm init’ creates a ‘elm.json’ pointing to what appear to be old versions of modules/libraries. For instance it points to
“elm/core” : “1.0.2”,
“elm/html” : “1.0.0”
and more.
It looks like the actual latest version of Core is “elm-lang/core” : “5.1.1”. Html should be “elm-lang/html”: 2.0.0
What’s going on here? What if I want to use later versions?