diff --git a/package.json b/package.json new file mode 100644 index 0000000..7321fd8 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "example-project", + "version": "1.0.0", + "description": "An example project to demonstrate npm configuration and build process.", + "main": "index.js", + "scripts": { + "build": "echo 'Building the project...'" + }, + "author": "Your Name", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + }, + "devDependencies": { + "eslint": "^8.45.0" + } +}