ERROR in visual studio code

npm run dev
npm ERR! Missing script: “dev”
npm ERR!
npm ERR! To see a list of scripts, run:
npm ERR! npm run

npm ERR! A complete log of this run can be found in
{
“name”: “issue-handeler”,
“version”: “0.1.0”,
“private”: true,
“scripts”: {
“dev”: “next dev”,
“build”: “next build”,
“start”: “next start”,
“lint”: “next lint”
},
“dependencies”: {
@types/node”: “20.8.10”,
@types/react”: “18.2.35”,
@types/react-dom”: “18.2.14”,
“autoprefixer”: “10.4.16”,
“eslint”: “8.53.0”,
“eslint-config-next”: “14.0.1”,
“next”: “14.0.1”,
“postcss”: “8.4.31”,
“react”: “18.2.0”,
“react-dom”: “18.2.0”,
“tailwindcss”: “3.3.5”,
“typescript”: “5.2.2”
}
}
this is my json filke
I don’t know why I keep getting this error can anyone please help me with this

Can you add these scripts before your code:

“scripts”: {
“dev”: “next dev”,
“build”: “next build”,
“start”: “next start”,
“lint”: “next lint”
},

I hope it will help you.
Thanks