Unity Package Manager dependences:
- TextMeshPro
- NewInputSystem
Unity does not support resolving dependences from a git url. Because of that, you will need to add the following lines to your manifest.json.
"dependencies": {
"com.juce.utils": "git+https://github.com/Juce-Assets/Juce-Utils",
"com.juce.core": "git+https://github.com/Juce-Assets/Juce-Core",
"com.juce.coreunity": "git+https://github.com/Juce-Assets/Juce-CoreUnity",
"com.juce.tween": "git+https://github.com/Juce-Assets/Juce-Tween",
"com.juce.tweencomponent": "git+https://github.com/Juce-Assets/Juce-TweenPlayer",
"com.juce.input": "git+https://github.com/Juce-Assets/Juce-Input",
},