# Missing Newtonsoft Json

Our plugin has various scripts and dependencies that use Newtonsoft Json. If Newtonsoft Json is missing from the plugin, it could lead to a large number of errors as shown below:

<figure><img src="https://413558230-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEtUJA212Zc1S9ACc8T4l%2Fuploads%2FzSgc8NsD4qMDmxREphes%2Fimage.png?alt=media&#x26;token=f01df105-cbc9-43b8-a745-92720fb2a053" alt=""><figcaption></figcaption></figure>

Ensure that NewtonSoft.Json is present in your packages. Go to your project folder.&#x20;

<figure><img src="https://413558230-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEtUJA212Zc1S9ACc8T4l%2Fuploads%2F9JboOl0RROyGjswVCT9P%2Fimage.png?alt=media&#x26;token=8dbdbcf4-eb02-495e-9900-c3dc322dfd85" alt=""><figcaption></figcaption></figure>

Then navigate to Packages folder. In the Packages folder. Click on manifest.json. A json file containing the project dependacies should open up.

Add the Newtonsoft Json Package on top.

```json
    "com.unity.nuget.newtonsoft-json": "3.2.1",
```

The final manifest.json should look like this.

```json
{  
    "dependencies": {
        "com.unity.nuget.newtonsoft-json": "3.2.1", 
        "com.unity.animation.rigging": "1.1.1",
        "com.unity.ide.rider": "3.0.16",
        "com.unity.ide.visualstudio": "2.0.16",
        "com.unity.ide.vscode": "1.2.5",
        "com.unity.test-framework": "1.1.33",
        "com.unity.textmeshpro": "3.0.6",
        "com.unity.timeline": "1.6.4",
        .
        .
        .
    }
}
```
