Can’t npm run dev because of JSON.parse issue. No red lines on in VS Code, I’ve checked for errant commas. Not sure what else it could be

**This is what the terminal says when I tried to npm run dev.
**

npm ERR! code EJSONPARSE
npm ERR! path C:UsersuserDocumentsUdemyNext Projectsnext-reviews/package.json
npm ERR! JSON.parse Unexpected string in JSON at position 109 while parsing '{  
npm ERR! JSON.parse     "name": "next-reviews",
npm ERR! JSON.parse     "pri'
npm ERR! JSON.parse Failed to parse JSON data.
npm ERR! JSON.parse Note: package.json must be actual JSON, not just JavaScript.

This is what was in the code.

{
    "name": "next-reviews",
    "private": true,
    "scripts":{
        "dev": "next dev"
    },
    "dependencies": {
        "next": "^14.1.3",
        "react": "^18.2.0",
        "react-dom": "^18.2.0"
    }
}