json
{
  "name": "your-nodejs-project",
  "version": "1.0.0",                                        
  "description": "Your Node.js project description",
  "type": "module", // Add this line to enable ES6 modules
  "scripts": {
    "start": "node your-entry-file.js"
  },
  "dependencies": {
    // Your dependencies here
  }
}